Skip to content

Commit

Permalink
Release 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nezuo committed Jul 20, 2023
1 parent 31a52c3 commit fe9dbaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased Changes

## 0.2.3 - July 19, 2023
* Fix silly mistake where I don't return the collection from `createCollection`

## 0.2.2 - July 19, 2023
* Remove write cooldown throttling since write cooldowns [were removed](https://devforum.roblox.com/t/removal-of-6s-cool-down-for-data-stores/2436230) ([#11])
* Fix save merging algorithm ([#13])
Expand Down
2 changes: 1 addition & 1 deletion src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ end
@return Collection
]=]
function Lapis.createCollection(name, options)
internal.createCollection(name, options)
return internal.createCollection(name, options)
end

return Lapis
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nezuo/lapis"
version = "0.2.2"
version = "0.2.3"
registry = "https://github.com/UpliftGames/wally-index"
exclude = ["**"]
include = ["src", "src/*", "default.project.json", "wally.toml", "LICENSE"]
Expand Down

0 comments on commit fe9dbaf

Please sign in to comment.