Skip to content

Commit

Permalink
store: bump to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hedzr committed Nov 1, 2024
1 parent 6a053ca commit ed17f8d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGELOG

- v1.1.0
- [BREAK] in Store API, unexport struct ptr removed, instead of `Store` interface.
These apis changed to:
- `Clone() (newStore Store)`
- `Dup() (newStore Store)`
- `WithPrefix(prefix ...string) (newStore Store)`
- `WithPrefixReplaced(newPrefix ...string) (newStore Store)`
- security patch
- upgrade deps

- v1.0.19
- security patch
- upgrade deps
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,14 @@ For more information, browse these public sites:

To see the recently changes at [CHANGELOG](https://github.com/hedzr/store/blob/master/CHANGELOG).

> Since v1.1.0, unexported struct ptr (*storeS) removed from `Store` API.
>
> These apis changed to:
> - `Clone() (newStore Store)`
> - `Dup() (newStore Store)`
> - `WithPrefix(prefix ...string) (newStore Store)`
> - `WithPrefixReplaced(newPrefix ...string) (newStore Store)`
## More Features

The `store` gives many advanced features from out of the box, but the relative documents are not enough. We will try our best to fill more documentation at a certain point in the future.
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@
// - https://github.com/hedzr/store
package store

const Version = "v1.0.19" // Version of libs.store
const Version = "v1.1.0" // Version of libs.store

0 comments on commit ed17f8d

Please sign in to comment.