Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yhara committed Sep 15, 2023
1 parent ea1a925 commit fa7614f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.9.0 (2023-09-15)
## v0.9.1 (2023-09-15)

- Setup
- Upgrade to llvm-16 (#507)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "shiika"
version = "0.7.0"
version = "0.9.1"
authors = [ "Yutaka HARA <yutaka.hara.gmail.com>" ]

[workspace]
Expand Down
4 changes: 3 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ end

desc "git ci, git tag and git push"
task :release do
ver = File.read('CHANGELOG.md')[/v([\d\.]+) /, 1]
v = "v" + ver
raise "Cargo.toml not updated" unless File.readlines("Cargo.toml").include?("version = \"#{ver}\"\n")
sh "git diff --cached"
v = "v" + File.read('CHANGELOG.md')[/v([\d\.]+) /, 1]
puts "release as #{v}? [y/N]"
break unless $stdin.gets.chomp == "y"

Expand Down

0 comments on commit fa7614f

Please sign in to comment.