Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DannyBen committed Feb 10, 2024
1 parent a5ccc56 commit 20e4e8a
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 5 deletions.
71 changes: 71 additions & 0 deletions .changelog.old.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
## [v0.2.1](https://github.com/DannyBen/secret_hub/tree/v0.2.1) (2020-05-18)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/v0.2.0...v0.2.1)

**Merged pull requests:**

- Add more support for secrets from env vars [\#9](https://github.com/DannyBen/secret_hub/pull/9) ([DannyBen](https://github.com/DannyBen))

## [v0.2.0](https://github.com/DannyBen/secret_hub/tree/v0.2.0) (2020-05-15)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/v0.1.6...v0.2.0)

**Merged pull requests:**

- Add support for organization secrets [\#8](https://github.com/DannyBen/secret_hub/pull/8) ([DannyBen](https://github.com/DannyBen))

## [v0.1.6](https://github.com/DannyBen/secret_hub/tree/v0.1.6) (2020-04-17)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/v0.1.5...v0.1.6)

**Merged pull requests:**

- Fix exception handling on missing bulk config file [\#7](https://github.com/DannyBen/secret_hub/pull/7) ([DannyBen](https://github.com/DannyBen))

## [v0.1.5](https://github.com/DannyBen/secret_hub/tree/v0.1.5) (2020-02-17)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/v0.1.4...v0.1.5)

**Merged pull requests:**

- Add bulk save --only repo [\#6](https://github.com/DannyBen/secret_hub/pull/6) ([DannyBen](https://github.com/DannyBen))

## [v0.1.4](https://github.com/DannyBen/secret_hub/tree/v0.1.4) (2020-02-15)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/v0.1.3...v0.1.4)

**Merged pull requests:**

- Add dry run for save and clean operations [\#5](https://github.com/DannyBen/secret_hub/pull/5) ([DannyBen](https://github.com/DannyBen))

## [v0.1.3](https://github.com/DannyBen/secret_hub/tree/v0.1.3) (2020-02-15)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/v0.1.2...v0.1.3)

**Merged pull requests:**

- Tolerate missing secrets [\#4](https://github.com/DannyBen/secret_hub/pull/4) ([DannyBen](https://github.com/DannyBen))

## [v0.1.2](https://github.com/DannyBen/secret_hub/tree/v0.1.2) (2020-02-15)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/v0.1.1...v0.1.2)

**Merged pull requests:**

- More flexible config [\#3](https://github.com/DannyBen/secret_hub/pull/3) ([DannyBen](https://github.com/DannyBen))

## [v0.1.1](https://github.com/DannyBen/secret_hub/tree/v0.1.1) (2020-02-15)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/v0.1.0...v0.1.1)

**Merged pull requests:**

- Output list in YAML compatible format [\#2](https://github.com/DannyBen/secret_hub/pull/2) ([DannyBen](https://github.com/DannyBen))

## [v0.1.0](https://github.com/DannyBen/secret_hub/tree/v0.1.0) (2020-02-14)

[Full Changelog](https://github.com/DannyBen/secret_hub/compare/ab04d312349ca7815efdbc5794c576644314e49d...v0.1.0)

**Merged pull requests:**

- Add badges and github workflow [\#1](https://github.com/DannyBen/secret_hub/pull/1) ([DannyBen](https://github.com/DannyBen))
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changelog
Change Log
========================================

v0.2.2 - 2024-02-10
----------------------------------------

- Fix Psych 4 errors for Ruby 3.1
- Refactor with rubocop
- Drop support for Ruby 2.5
- Drop support for Ruby 2.6
- Drop support for Ruby 2.x
- Updates for Ruby 3.3 and Rack 3


## [v0.2.1](https://github.com/DannyBen/secret_hub/tree/v0.2.1) (2020-05-18)

Expand Down Expand Up @@ -71,7 +83,3 @@
**Merged pull requests:**

- Add badges and github workflow [\#1](https://github.com/DannyBen/secret_hub/pull/1) ([DannyBen](https://github.com/DannyBen))



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
5 changes: 5 additions & 0 deletions Runfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ action :mockserver do |args|
exec "bundle exec ruby spec/mock_api/server.rb"
end

help 'Generate changelog and append old changelog'
action :changelog do
system "git changelog --save"
system "cat .changelog.old.md >> CHANGELOG.md"
end

0 comments on commit 20e4e8a

Please sign in to comment.