Skip to content

Commit f9b84ff

Browse files
committed
Merge branch 'release/v1.0.0' into develop
2 parents 96d9d0c + c44ec13 commit f9b84ff

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.0] - 2024-09-23
11+
1012
### Changed
1113

1214
- Monitoring implementation now uses `Agent` instead of `:ets`. It's needed to be more flexible in pool naming.
@@ -255,7 +257,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
255257
256258
- Supported main interface `Poolex.run/3` with `:timeout` option.
257259
258-
[unreleased]: https://github.com/general-CbIC/poolex/compare/v0.10.0...HEAD
260+
[unreleased]: https://github.com/general-CbIC/poolex/compare/v1.0.0...HEAD
261+
[1.0.0]: https://github.com/general-CbIC/poolex/compare/v0.10.0...v1.0.0
259262
[0.10.0]: https://github.com/general-CbIC/poolex/compare/v0.9.0...v0.10.0
260263
[0.9.0]: https://github.com/general-CbIC/poolex/compare/v0.8.0...v0.9.0
261264
[0.8.0]: https://github.com/general-CbIC/poolex/compare/v0.7.6...v0.8.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Add `:poolex` to your list of dependencies in `mix.exs`:
4747
```elixir
4848
def deps do
4949
[
50-
{:poolex, "~> 0.10.0"}
50+
{:poolex, "~> 1.0"}
5151
]
5252
end
5353
```

docs/guides/migration-from-poolboy.cheatmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If you are using `:poolboy` and want to use `Poolex` instead, then you need to f
1212
defp deps do
1313
[
1414
- {:poolboy, "~> 1.5.0"}
15-
+ {:poolex, "~> 0.10.0"}
15+
+ {:poolex, "~> 1.0"}
1616
]
1717
end
1818
```

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defmodule Poolex.MixProject do
1515
package: package(),
1616
source_url: "https://github.com/general-CbIC/poolex",
1717
start_permanent: Mix.env() == :prod,
18-
version: "1.0.0-rc.0"
18+
version: "1.0.0"
1919
]
2020
end
2121

0 commit comments

Comments
 (0)