Skip to content

Commit

Permalink
Merge branch 'release/v1.0.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
general-CbIC committed Sep 23, 2024
2 parents 96d9d0c + c44ec13 commit f9b84ff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2024-09-23

### Changed

- Monitoring implementation now uses `Agent` instead of `:ets`. It's needed to be more flexible in pool naming.
Expand Down Expand Up @@ -255,7 +257,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Supported main interface `Poolex.run/3` with `:timeout` option.
[unreleased]: https://github.com/general-CbIC/poolex/compare/v0.10.0...HEAD
[unreleased]: https://github.com/general-CbIC/poolex/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/general-CbIC/poolex/compare/v0.10.0...v1.0.0
[0.10.0]: https://github.com/general-CbIC/poolex/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/general-CbIC/poolex/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/general-CbIC/poolex/compare/v0.7.6...v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Add `:poolex` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:poolex, "~> 0.10.0"}
{:poolex, "~> 1.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/migration-from-poolboy.cheatmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If you are using `:poolboy` and want to use `Poolex` instead, then you need to f
defp deps do
[
- {:poolboy, "~> 1.5.0"}
+ {:poolex, "~> 0.10.0"}
+ {:poolex, "~> 1.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defmodule Poolex.MixProject do
package: package(),
source_url: "https://github.com/general-CbIC/poolex",
start_permanent: Mix.env() == :prod,
version: "1.0.0-rc.0"
version: "1.0.0"
]
end

Expand Down

0 comments on commit f9b84ff

Please sign in to comment.