File tree Expand file tree Collapse file tree 4 files changed +28
-0
lines changed
Expand file tree Collapse file tree 4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ # Released under the MIT License.
4+ # Copyright, 2025, by Samuel Williams.
5+
6+ # Update the project documentation with the new version number.
7+ #
8+ # @parameter version [String] The new version number.
9+ def after_gem_release_version_increment ( version )
10+ context [ "releases:update" ] . call ( version )
11+ context [ "utopia:project:readme:update" ] . call
12+ end
Original file line number Diff line number Diff line change 1010group :maintenance , optional : true do
1111 gem "bake-modernize"
1212 gem "bake-gem"
13+ gem "bake-releases"
1314
1415 gem "utopia-project"
1516end
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ Provides abstractions for working with the Rack specification on top of [`Protoc
1111
1212## Usage
1313
14+ Please see the [ project documentation] ( https://socketry.github.io/protocol-rack/ ) for more details.
15+
1416### Application Adapter
1517
1618Given a rack application, you can adapt it for use on ` async-http ` :
@@ -61,6 +63,14 @@ run proc{|env|
6163}
6264```
6365
66+ ## Releases
67+
68+ Please see the [ project releases] ( https://socketry.github.io/protocol-rack/releases/index ) for all releases.
69+
70+ ### Unreleased
71+
72+ - Stop setting ` env["SERVER_PORT"] ` to ` nil ` if not present.
73+
6474## Contributing
6575
6676We welcome contributions to this project.
Original file line number Diff line number Diff line change 1+ # Releases
2+
3+ ## Unreleased
4+
5+ - Stop setting ` env["SERVER_PORT"] ` to ` nil ` if not present.
You can’t perform that action at this time.
0 commit comments