Skip to content

Commit

Permalink
Prepare for v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dentarg committed Jul 31, 2024
1 parent 9eae348 commit 5433729
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

on:
push:
tags:
- v*
workflow_dispatch:

jobs:
release:
if: github.repository == 'sinatra/mustermann'
runs-on: ubuntu-latest
permissions:
id-token: write # for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ruby
- uses: rubygems/[email protected]
# build gems
- run: rake pkg
# push gems
- run: rake release
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ Mustermann follows [Semantic Versioning 2.0](http://semver.org/). Anything docum

### Stable Releases

* **Mustermann 3.0.1** (2024-07-31)
* Ruby 3.4+ compatibility: "Use URI::RFC2396_Parser#regex explicitly" [#138](https://github.com/sinatra/mustermann/pull/138) [@hsbt](https://github.com/hsbt)

* **Mustermann 3.0.0** (2022-07-24)
* Drop support for old Rubies < 2.6.

Expand Down
2 changes: 1 addition & 1 deletion mustermann/lib/mustermann/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module Mustermann
VERSION ||= '3.0.0'
VERSION ||= '3.0.1'
end

1 comment on commit 5433729

@dentarg
Copy link
Member Author

Choose a reason for hiding this comment

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

Please sign in to comment.