From aa773413b2ec65818a8be0eee8b40d698f53cb69 Mon Sep 17 00:00:00 2001 From: Brandur Date: Wed, 21 Aug 2024 07:54:14 -0700 Subject: [PATCH] Prepare release 0.6.1 Prepare release 0.6.1, containing the Ruby gem fix from #26. --- CHANGELOG.md | 8 +++++++- Gemfile.lock | 2 +- driver/riverqueue-activerecord/Gemfile.lock | 4 ++-- .../riverqueue-activerecord.gemspec | 2 +- driver/riverqueue-sequel/Gemfile.lock | 4 ++-- driver/riverqueue-sequel/riverqueue-sequel.gemspec | 2 +- riverqueue.gemspec | 2 +- 7 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dac307f..3d0dd8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1] - 2024-08-21 + +### Fixed + +- Fix source files not being correctly included in built Ruby gems. [PR #26](https://github.com/riverqueue/riverqueue-ruby/pull/26). + ## [0.6.0] - 2024-07-06 ### Changed @@ -42,4 +48,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Initial implementation that supports inserting jobs using either ActiveRecord or Sequel. [PR #1](https://github.com/riverqueue/riverqueue-ruby/pull/1). \ No newline at end of file +- Initial implementation that supports inserting jobs using either ActiveRecord or Sequel. [PR #1](https://github.com/riverqueue/riverqueue-ruby/pull/1). diff --git a/Gemfile.lock b/Gemfile.lock index c580a48..b716247 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - riverqueue (0.6.0) + riverqueue (0.6.1) GEM remote: https://rubygems.org/ diff --git a/driver/riverqueue-activerecord/Gemfile.lock b/driver/riverqueue-activerecord/Gemfile.lock index b4ab411..c8cf7ce 100644 --- a/driver/riverqueue-activerecord/Gemfile.lock +++ b/driver/riverqueue-activerecord/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: ../.. specs: - riverqueue (0.6.0) + riverqueue (0.6.1) PATH remote: . specs: - riverqueue-activerecord (0.6.0) + riverqueue-activerecord (0.6.1) activerecord (> 0, < 1000) activesupport (> 0, < 1000) pg (> 0, < 1000) diff --git a/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec b/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec index de7b7ee..206452f 100644 --- a/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec +++ b/driver/riverqueue-activerecord/riverqueue-activerecord.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "riverqueue-activerecord" - s.version = "0.6.0" + s.version = "0.6.1" s.summary = "ActiveRecord driver for the River Ruby gem." s.description = "ActiveRecord driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go." s.authors = ["Blake Gentry", "Brandur Leach"] diff --git a/driver/riverqueue-sequel/Gemfile.lock b/driver/riverqueue-sequel/Gemfile.lock index abe62ad..b1cd2d1 100644 --- a/driver/riverqueue-sequel/Gemfile.lock +++ b/driver/riverqueue-sequel/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: ../.. specs: - riverqueue (0.6.0) + riverqueue (0.6.1) PATH remote: . specs: - riverqueue-sequel (0.6.0) + riverqueue-sequel (0.6.1) pg (> 0, < 1000) sequel (> 0, < 1000) diff --git a/driver/riverqueue-sequel/riverqueue-sequel.gemspec b/driver/riverqueue-sequel/riverqueue-sequel.gemspec index 183afb4..4f9d4d8 100644 --- a/driver/riverqueue-sequel/riverqueue-sequel.gemspec +++ b/driver/riverqueue-sequel/riverqueue-sequel.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "riverqueue-sequel" - s.version = "0.6.0" + s.version = "0.6.1" s.summary = "Sequel driver for the River Ruby gem." s.description = "Sequel driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go." s.authors = ["Blake Gentry", "Brandur Leach"] diff --git a/riverqueue.gemspec b/riverqueue.gemspec index eab0ed3..864d067 100644 --- a/riverqueue.gemspec +++ b/riverqueue.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "riverqueue" - s.version = "0.6.0" + s.version = "0.6.1" s.summary = "River is a fast job queue for Go." s.description = "River is a fast job queue for Go. Use this gem in conjunction with gems riverqueue-activerecord or riverqueue-sequel to insert jobs in Ruby which will be worked from Go." s.authors = ["Blake Gentry", "Brandur Leach"]