Skip to content

Commit eb6cf7b

Browse files
committed
release v7.4.0.rc1
1 parent f3b33f8 commit eb6cf7b

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [7.4.0](https://github.com/ClosureTree/closure_tree/tree/7.4.0)
4+
5+
[Full Changelog](https://github.com/ClosureTree/closure_tree/compare/v7.3.0...7.4.0)
6+
7+
- fix: hierarchy model with namespace should inherit from the superclass of basic model [\#384](https://github.com/ClosureTree/closure_tree/pull/384) ([shawndodo](https://github.com/shawndodo))
8+
- Add with\_descendant to readme [\#381](https://github.com/ClosureTree/closure_tree/pull/381) ([mattvague](https://github.com/mattvague))
39

410
### 7.3.0
511
- Ruby 3.0 support

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
source 'https://rubygems.org'
22

33
gemspec
4+
5+
6+
gem "bump", "~> 0.10.0"
7+
gem "github_changelog_generator", "~> 1.16"

Rakefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,12 @@ namespace :spec do
2626
task.pattern = 'spec/generators/*_spec.rb'
2727
end
2828
end
29+
30+
require 'github_changelog_generator/task'
31+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
32+
config.user = 'ClosureTree'
33+
config.project = 'closure_tree'
34+
config.issues = false
35+
config.future_release = '5.2.0'
36+
config.since_tag = 'v7.3.0'
37+
end

lib/closure_tree/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ClosureTree
2-
VERSION = Gem::Version.new('7.3.0')
2+
VERSION = Gem::Version.new('7.4.0.rc1')
33
end

0 commit comments

Comments
 (0)