Skip to content

Commit

Permalink
Release v2.7: do not allow Cowboy 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jan 29, 2024
1 parent 9b9151e commit c0b3e8b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v2.7.0

### Enhancements

* Do not allow Cowboy 2.11 due to backwards incompatible changes

## v2.6.2

### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Plug.Cowboy.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-plug/plug_cowboy"
@version "2.6.2"
@version "2.7.0"
@description "A Plug adapter for Cowboy"

def project do
Expand Down Expand Up @@ -34,7 +34,7 @@ defmodule Plug.Cowboy.MixProject do
def deps do
[
{:plug, "~> 1.14"},
{:cowboy, "~> 2.7"},
{:cowboy, "~> 2.7.0 or ~> 2.8.0 or ~> 2.9.0 or ~> 2.10.0"},
{:cowboy_telemetry, "~> 0.3"},
{:ex_doc, "~> 0.20", only: :docs},
{:hackney, "~> 1.2", only: :test},
Expand Down

1 comment on commit c0b3e8b

@josevalim
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2.7.1 is out.

Please sign in to comment.