Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions default.project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Typeforge",
"tree": {
"$path": "src"
}
}
4 changes: 2 additions & 2 deletions wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cameronpcampbell/typeforge"
description="A Type Function utility library."
version = "2.1.0"
description = "A Type Function utility library."
version = "3.0.0"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you change the version to 2.1.1 as the changes only constitutes a minor patch in my opinion. 😄

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change is major because it breaks compatibility with previous versions of the package.

It breaks compatibility because, previously, to import the package (both in wally and pesde), users were required to do

local typegorge = require(pathToTypeforge.src)

which is no longer valid. Instead, it's now

local typegorge = require(pathToTypeforge)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Making this a minor patch would make uses of the package that took versions 2.x.x break

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh yea, you're right - my bad.

registry = "https://github.com/UpliftGames/wally-index"
realm = "shared"
license = "MIT"
Expand Down
Loading