Skip to content

Commit

Permalink
Version bump to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrudel committed Oct 19, 2023
1 parent a4db165 commit 124d697
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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.

<!-- MDOC -->

Expand Down Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion lib/bandit/phoenix_adapter.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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:`
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 124d697

Please sign in to comment.