File tree Expand file tree Collapse file tree 3 files changed +33
-1
lines changed
Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Gem
2+
3+ on :
4+ push :
5+ tags :
6+ - v*
7+
8+ jobs :
9+ push :
10+ if : github.repository == 'collectiveidea/awesome_nested_set'
11+ runs-on : ubuntu-latest
12+ environment : publishing
13+
14+ permissions :
15+ contents : write
16+ id-token : write
17+
18+ steps :
19+ # Set up
20+ - uses : actions/checkout@v4
21+ - name : Set up Ruby
22+ uses : ruby/setup-ruby@v1
23+ with :
24+ bundler-cache : true
25+ ruby-version : ruby
26+
27+ # Release
28+ - uses : rubygems/release-gem@v1
Original file line number Diff line number Diff line change 11Unreleased version
22
3+ 3.8.0
4+ * Support Rails 8.0 [Takuya N](https://github.com/collectiveidea/awesome_nested_set/pull/487)
5+ * Enable Rubygems Trusted Publishing
6+
373.7.0
48* Teach #move_to_child_of and #move_to_child_with_index to accept :root as a parameter [Micah Geisel](https://github.com/botandrose)
59* Add #roots method [Micah Geisel](https://github.com/botandrose)
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module AwesomeNestedSet
4- VERSION = '3.7 .0' unless defined? ( ::AwesomeNestedSet ::VERSION )
4+ VERSION = '3.8 .0' unless defined? ( ::AwesomeNestedSet ::VERSION )
55end
You can’t perform that action at this time.
0 commit comments