From c44ec13a73e442696ebc4cb1025c02216f147486 Mon Sep 17 00:00:00 2001 From: Aleksandr Sysoev Date: Mon, 23 Sep 2024 16:55:06 +0300 Subject: [PATCH] Bump version to 1.0.0 --- CHANGELOG.md | 5 ++++- README.md | 2 +- docs/guides/migration-from-poolboy.cheatmd | 2 +- mix.exs | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 009995a..1ba6ece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. @@ -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 diff --git a/README.md b/README.md index 55d79e5..5d4c8d6 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/docs/guides/migration-from-poolboy.cheatmd b/docs/guides/migration-from-poolboy.cheatmd index 84d857b..ec25efe 100644 --- a/docs/guides/migration-from-poolboy.cheatmd +++ b/docs/guides/migration-from-poolboy.cheatmd @@ -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 ``` diff --git a/mix.exs b/mix.exs index edc0f03..4a3b4a1 100644 --- a/mix.exs +++ b/mix.exs @@ -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