Skip to content

Commit de47789

Browse files
committed
Add release notes.
1 parent fef444c commit de47789

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

bake.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

gems.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
group :maintenance, optional: true do
1111
gem "bake-modernize"
1212
gem "bake-gem"
13+
gem "bake-releases"
1314

1415
gem "utopia-project"
1516
end

readme.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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

1618
Given 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

6676
We welcome contributions to this project.

releases.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Releases
2+
3+
## Unreleased
4+
5+
- Stop setting `env["SERVER_PORT"]` to `nil` if not present.

0 commit comments

Comments
 (0)