From 124d697c3c604aca9122332a4ea789561b925f2e Mon Sep 17 00:00:00 2001 From: Mat Trudel Date: Thu, 19 Oct 2023 16:27:10 -0400 Subject: [PATCH] Version bump to 1.0.0 --- CHANGELOG.md | 6 ++++++ README.md | 6 +++--- lib/bandit/phoenix_adapter.ex | 2 +- mix.exs | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef06fc57..d35217a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog for 1.0.0-pre +## 1.0.0 (18 Oct 2023) + +### Changes + +* Remove internal tracking of remote `max_concurrent_streams` setting (#248) + ## 1.0.0-pre.18 (10 Oct 2023) ### Fixes diff --git a/README.md b/README.md index 4b6023c6..69c3ba31 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ Using Bandit to host your Phoenix application couldn't be simpler: 1. Add Bandit as a dependency in your Phoenix application's `mix.exs`: ```elixir - {:bandit, "~> 1.0-pre"} + {:bandit, "~> 1.0"} ``` 2. Add the following `adapter:` line to your endpoint configuration in `config/config.exs`, as in the following example: @@ -169,7 +169,7 @@ If you wish to interact with WebSockets at a more fundamental level, the [WebSockAdapter](https://hexdocs.pm/websock_adapter/WebSockAdapter.html) libraries provides a generic abstraction for WebSockets (very similar to how Plug is a generic abstraction on top of HTTP). Bandit fully supports all aspects of -these libraries. +these libraries. @@ -207,7 +207,7 @@ by adding `bandit` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:bandit, "~> 1.0-pre"} + {:bandit, "~> 1.0"} ] end ``` diff --git a/lib/bandit/phoenix_adapter.ex b/lib/bandit/phoenix_adapter.ex index 40e386e4..9f30ddfa 100644 --- a/lib/bandit/phoenix_adapter.ex +++ b/lib/bandit/phoenix_adapter.ex @@ -8,7 +8,7 @@ defmodule Bandit.PhoenixAdapter do To use this adapter, your project will need to include Bandit as a dependency: ```elixir - {:bandit, "~> 1.0-pre"} + {:bandit, "~> 1.0"} ``` Once Bandit is included as a dependency of your Phoenix project, add the following `adapter:` diff --git a/mix.exs b/mix.exs index 943d2898..3c0ea18c 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Bandit.MixProject do def project do [ app: :bandit, - version: "1.0.0-pre.18", + version: "1.0.0", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, deps: deps(),