Skip to content

Commit

Permalink
Prepare for version 0.1.0
Browse files Browse the repository at this point in the history
Update various files to prepare for release 0.1.0, containing the
initial implementation from #1.
  • Loading branch information
brandur committed Apr 26, 2024
1 parent 353f746 commit f9da24b
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0] - 2024-04-25

### Added

- Initial implementation that supports inserting jobs using either ActiveRecord or Sequel. [PR #1](https://github.com/riverqueue/riverqueue-ruby/pull/1).
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
riverqueue (0.0.1)
riverqueue (0.1.0)

GEM
remote: https://rubygems.org/
Expand Down
9 changes: 8 additions & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,19 @@ $ open coverage/index.html
```shell
git checkout master && git pull --rebase
VERSION=v0.0.x

# update version in riverqueue.gemspec!!
gem build riverqueue.gemspec
gem push riverqueue-$VERSION.gem

# update version in drivers/riverqueue-activerecord.gemspec!!
pushd drivers/riverqueue-activerecord && gem build riverqueue-activerecord.gemspec && popd
pushd drivers/riverqueue-activerecord && gem push riverqueue-activerecord-$VERSION.gem && popd

# update version in drivers/riverqueue-sequel.gemspec!!
pushd drivers/riverqueue-sequel && gem build riverqueue-sequel.gemspec && popd
pushd drivers/riverqueue-sequel && gem push riverqueue-sequel-$VERSION.gem && popd

git tag $VERSION
git push --tags
```
```
6 changes: 3 additions & 3 deletions drivers/riverqueue-activerecord/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
PATH
remote: ../..
specs:
riverqueue (0.0.1)
riverqueue (0.1.0)

PATH
remote: .
specs:
riverqueue-activerecord (0.0.1)
activerecord (> 0, < 1000)
activesupport
pg
activesupport (> 0, < 1000)
pg (> 0, < 1000)

GEM
remote: https://rubygems.org/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "riverqueue-activerecord"
s.version = "0.0.1"
s.version = "0.1.0"
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"]
Expand Down
6 changes: 3 additions & 3 deletions drivers/riverqueue-sequel/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
PATH
remote: ../..
specs:
riverqueue (0.0.1)
riverqueue (0.1.0)

PATH
remote: .
specs:
riverqueue-sequel (0.0.1)
pg
sequel
pg (> 0, < 1000)
sequel (> 0, < 1000)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion drivers/riverqueue-sequel/riverqueue-sequel.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "riverqueue-sequel"
s.version = "0.0.1"
s.version = "0.1.0"
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"]
Expand Down
2 changes: 1 addition & 1 deletion riverqueue.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "riverqueue"
s.version = "0.0.1"
s.version = "0.1.0"
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"]
Expand Down

0 comments on commit f9da24b

Please sign in to comment.