Skip to content

Commit bf9e8fc

Browse files
Tilo Slobodageekq
authored andcommitted
separate CHANGELOG.md and making it discoverable in RubyGems.org
1 parent ad9a71d commit bf9e8fc

File tree

3 files changed

+23
-21
lines changed

3 files changed

+23
-21
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# Changelog
3+
4+
## New in the version 3.1.0
5+
6+
* [#227](https://github.com/geekq/workflow/pull/227) Allow event arguments to be taken into account when selecting the event
7+
* [#232](https://github.com/geekq/workflow/pull/232) Add ability to include partial workflow definitions for composability
8+
* [#241](https://github.com/geekq/workflow/pull/241) Example for defining workflow dynamically from JSON
9+
10+
## New in the version 3.0.0
11+
12+
* [#228](https://github.com/geekq/workflow/pull/228) Support for Ruby 3 keyword args, provided by @agirling
13+
* retire Ruby 2.6 since it has reached end of live; please use workflow 2.x, if you still depend on that Ruby version
14+
* [#229](https://github.com/geekq/workflow/pull/229) Switch from travis CI to GihHub actions for continuous integration
15+
16+
## New in the versions 2.x
17+
18+
* extract persistence adapters, Rails/ActiveRecord integration is now a separate gem
19+
workflow-activerecord

README.adoc

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -523,27 +523,6 @@ namespace :doc do
523523
end
524524
```
525525

526-
527-
Changelog
528-
---------
529-
530-
=== New in the version 3.1.0
531-
532-
* link:https://github.com/geekq/workflow/pull/227[#227] Allow event arguments to be taken into account when selecting the event
533-
* link:https://github.com/geekq/workflow/pull/232[#232] Add ability to include partial workflow definitions for composability
534-
* link:https://github.com/geekq/workflow/pull/241[#241] Example for defining workflow dynamically from JSON
535-
536-
=== New in the version 3.0.0
537-
538-
* link:https://github.com/geekq/workflow/pull/228[#228] Support for Ruby 3 keyword args, provided by @agirling
539-
* retire Ruby 2.6 since it has reached end of live; please use workflow 2.x, if you still depend on that Ruby version
540-
* link:https://github.com/geekq/workflow/pull/229[#229] Switch from travis CI to GihHub actions for continuous integration
541-
542-
### New in the versions 2.x
543-
544-
* extract persistence adapters, Rails/ActiveRecord integration is now a separate gem
545-
workflow-activerecord
546-
547526
Support, Participation
548527
----------------------
549528

workflow.gemspec

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Gem::Specification.new do |gem|
1818
gem.licenses = ['MIT']
1919
gem.homepage = "https://github.com/geekq/workflow"
2020

21+
gem.metadata["homepage_uri"] = gem.homepage
22+
gem.metadata["source_code_uri"] = gem.homepage
23+
gem.metadata["changelog_uri"] = "https://github.com/geekq/workflow/blob/develop/CHANGELOG.md"
24+
2125
gem.files = Dir['CHANGELOG.md', 'README.md', 'LICENSE', 'lib/**/*']
2226
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
2327
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})

0 commit comments

Comments
 (0)