Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
78605c4
allow for multiple items with the same starting letter on meta
joao-paulo-parity Feb 10, 2023
8589e5b
remove unnecessary print
joao-paulo-parity Feb 10, 2023
6bfabdf
bump version for breaking change
joao-paulo-parity Feb 10, 2023
5cec100
fix global meta usage
joao-paulo-parity Feb 10, 2023
ec417e3
fix global meta assignments
joao-paulo-parity Feb 10, 2023
7f95009
re-add comment on compute_change_meta
joao-paulo-parity Feb 14, 2023
fcbd198
refactor $GITHUB_TOKEN checks
joao-paulo-parity Feb 14, 2023
9341786
refactor $GITHUB_TOKEN checks
joao-paulo-parity Feb 14, 2023
a066bd7
bump version to 3.0.5 and add MFA
chevdor Feb 14, 2023
1439f0d
Extract a Label class and add some tests
chevdor Feb 14, 2023
879d391
Add error handling
chevdor Feb 14, 2023
7934dbf
Avoid skipping tests that could run
chevdor Feb 14, 2023
c5942aa
set GITHUB_TOKEN=disabled for pull requests on CI
joao-paulo-parity Feb 14, 2023
a3c3567
Merge branch 'jp/meta' of github.com:paritytech/changelogerator into …
joao-paulo-parity Feb 14, 2023
1577956
fix if expression
joao-paulo-parity Feb 14, 2023
ec43e6a
fix if expression
joao-paulo-parity Feb 14, 2023
0906060
Fix readme
chevdor Feb 14, 2023
54770bd
Remove some polkadot/srtool specifics
chevdor Feb 14, 2023
140602d
update README example
joao-paulo-parity Feb 14, 2023
ecc0826
Merge branch 'jp/meta' of github.com:paritytech/changelogerator into …
joao-paulo-parity Feb 14, 2023
4cbf9d6
improve comments
joao-paulo-parity Feb 14, 2023
27d21e2
Add new test
chevdor Feb 14, 2023
d3be4b3
Refactoring for better irb support
chevdor Feb 15, 2023
85a1710
Fix so both local and online tests work
chevdor Feb 15, 2023
c905262
Add new flag to return the version
chevdor Feb 15, 2023
0de7e51
Fix packaging
chevdor Feb 15, 2023
fb98671
disable lint
joao-paulo-parity Feb 15, 2023
9315a1c
Fix location of the gemspec
chevdor Feb 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix location of the gemspec
  • Loading branch information
chevdor committed Feb 15, 2023
commit 9315a1c84ed13d6ff63d7109b8fac42c04d8b2a1
3 changes: 2 additions & 1 deletion bin/changelogerator
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ of the changes between 2 references on your Github project.
end

opts.on('-V', '--version', 'Show the version') do
gem = Gem::Specification.load('changelogerator.gemspec')
gemspec = "#{__dir__}/../changelogerator.gemspec"
gem = Gem::Specification.load(gemspec)
puts format('%<n>s v%<v>s', { v: gem.version, n: gem.name })
exit
end
Expand Down