Skip to content

Commit 3cecc5c

Browse files
authored
Prepare release v0.4.0 (#15)
Prepare release `v0.4.0`, which largely contains #14 which implements the FNV hashing algorithm and drops the dependency on the `fnv-hash` gem.
1 parent a8c767a commit 3cecc5c

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0] - 2024-04-28
11+
1012
### Changed
1113

1214
- Implement the FNV (Fowler–Noll–Vo) hashing algorithm in the project and drop dependency on the `fnv-hash` gem. [PR #14](https://github.com/riverqueue/riverqueue-ruby/pull/14).

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
riverqueue (0.3.0)
4+
riverqueue (0.4.0)
55

66
GEM
77
remote: https://rubygems.org/

docs/development.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ $ open coverage/index.html
7272
3. Build and push each gem, then tag the release and push that:
7373

7474
```shell
75+
git pull
76+
7577
gem push riverqueue-${"${VERSION}"/v/}.gem
7678
pushd drivers/riverqueue-activerecord && gem push riverqueue-activerecord-${"${VERSION}"/v/}.gem && popd
7779
pushd drivers/riverqueue-sequel && gem push riverqueue-sequel-${"${VERSION}"/v/}.gem && popd

drivers/riverqueue-activerecord/Gemfile.lock

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
PATH
22
remote: ../..
33
specs:
4-
riverqueue (0.3.0)
5-
fnv-hash
4+
riverqueue (0.4.0)
65

76
PATH
87
remote: .
98
specs:
10-
riverqueue-activerecord (0.3.0)
9+
riverqueue-activerecord (0.4.0)
1110
activerecord (> 0, < 1000)
1211
activesupport (> 0, < 1000)
1312
pg (> 0, < 1000)
@@ -42,7 +41,6 @@ GEM
4241
diff-lcs (1.5.1)
4342
docile (1.4.0)
4443
drb (2.2.1)
45-
fnv-hash (0.2.0)
4644
i18n (1.14.4)
4745
concurrent-ruby (~> 1.0)
4846
io-console (0.7.2)

drivers/riverqueue-activerecord/riverqueue-activerecord.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "riverqueue-activerecord"
3-
s.version = "0.3.0"
3+
s.version = "0.4.0"
44
s.summary = "ActiveRecord driver for the River Ruby gem."
55
s.description = "ActiveRecord driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go."
66
s.authors = ["Blake Gentry", "Brandur Leach"]

drivers/riverqueue-sequel/Gemfile.lock

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
PATH
22
remote: ../..
33
specs:
4-
riverqueue (0.3.0)
5-
fnv-hash
4+
riverqueue (0.4.0)
65

76
PATH
87
remote: .
98
specs:
10-
riverqueue-sequel (0.3.0)
9+
riverqueue-sequel (0.4.0)
1110
pg (> 0, < 1000)
1211
sequel (> 0, < 1000)
1312

@@ -18,7 +17,6 @@ GEM
1817
bigdecimal (3.1.7)
1918
diff-lcs (1.5.1)
2019
docile (1.4.0)
21-
fnv-hash (0.2.0)
2220
json (2.7.2)
2321
language_server-protocol (3.17.0.3)
2422
lint_roller (1.1.0)

drivers/riverqueue-sequel/riverqueue-sequel.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "riverqueue-sequel"
3-
s.version = "0.3.0"
3+
s.version = "0.4.0"
44
s.summary = "Sequel driver for the River Ruby gem."
55
s.description = "Sequel driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go."
66
s.authors = ["Blake Gentry", "Brandur Leach"]

riverqueue.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "riverqueue"
3-
s.version = "0.3.0"
3+
s.version = "0.4.0"
44
s.summary = "River is a fast job queue for Go."
55
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."
66
s.authors = ["Blake Gentry", "Brandur Leach"]

0 commit comments

Comments
 (0)