| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
| 7 | 7 | ||
| 8 | 8 | ## [Unreleased] | |
| 9 | 9 | ||
| 10 | + ## [0.5.0] - 2024-07-05 | ||
| 11 | + | ||
| 10 | 12 | ### Changed | |
| 11 | 13 | ||
| 12 | 14 | - Tag format is now checked on insert. Tags should be no more than 255 characters and match the regex `/\A[\w][\w\-]+[\w]\z/`. [PR #22](https://github.com/riverqueue/riverqueue-ruby/pull/22). | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | PATH | |
| 2 | 2 | remote: . | |
| 3 | 3 | specs: | |
| 4 | - riverqueue (0.4.0) | ||
| 4 | + riverqueue (0.5.0) | ||
| 5 | 5 | ||
| 6 | 6 | GEM | |
| 7 | 7 | remote: https://rubygems.org/ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -50,7 +50,7 @@ $ open coverage/index.html | |||
| 50 | 50 | ||
| 51 | 51 | ```shell | |
| 52 | 52 | git checkout master && git pull --rebase | |
| 53 | - export VERSION=v0.0.x | ||
| 53 | + export VERSION=v0.x.0 | ||
| 54 | 54 | ||
| 55 | 55 | ruby scripts/update_gemspec_version.rb riverqueue.gemspec | |
| 56 | 56 | ruby scripts/update_gemspec_version.rb driver/riverqueue-activerecord/riverqueue-activerecord.gemspec | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,12 +1,12 @@ | |||
| 1 | 1 | PATH | |
| 2 | 2 | remote: ../.. | |
| 3 | 3 | specs: | |
| 4 | - riverqueue (0.4.0) | ||
| 4 | + riverqueue (0.5.0) | ||
| 5 | 5 | ||
| 6 | 6 | PATH | |
| 7 | 7 | remote: . | |
| 8 | 8 | specs: | |
| 9 | - riverqueue-activerecord (0.4.0) | ||
| 9 | + riverqueue-activerecord (0.5.0) | ||
| 10 | 10 | activerecord (> 0, < 1000) | |
| 11 | 11 | activesupport (> 0, < 1000) | |
| 12 | 12 | pg (> 0, < 1000) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | Gem::Specification.new do |s| | |
| 2 | 2 | s.name = "riverqueue-activerecord" | |
| 3 | - s.version = "0.4.0" | ||
| 3 | + s.version = "0.5.0" | ||
| 4 | 4 | s.summary = "ActiveRecord driver for the River Ruby gem." | |
| 5 | 5 | s.description = "ActiveRecord driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go." | |
| 6 | 6 | s.authors = ["Blake Gentry", "Brandur Leach"] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,12 +1,12 @@ | |||
| 1 | 1 | PATH | |
| 2 | 2 | remote: ../.. | |
| 3 | 3 | specs: | |
| 4 | - riverqueue (0.4.0) | ||
| 4 | + riverqueue (0.5.0) | ||
| 5 | 5 | ||
| 6 | 6 | PATH | |
| 7 | 7 | remote: . | |
| 8 | 8 | specs: | |
| 9 | - riverqueue-sequel (0.4.0) | ||
| 9 | + riverqueue-sequel (0.5.0) | ||
| 10 | 10 | pg (> 0, < 1000) | |
| 11 | 11 | sequel (> 0, < 1000) | |
| 12 | 12 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | Gem::Specification.new do |s| | |
| 2 | 2 | s.name = "riverqueue-sequel" | |
| 3 | - s.version = "0.4.0" | ||
| 3 | + s.version = "0.5.0" | ||
| 4 | 4 | s.summary = "Sequel driver for the River Ruby gem." | |
| 5 | 5 | s.description = "Sequel driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go." | |
| 6 | 6 | s.authors = ["Blake Gentry", "Brandur Leach"] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | Gem::Specification.new do |s| | |
| 2 | 2 | s.name = "riverqueue" | |
| 3 | - s.version = "0.4.0" | ||
| 3 | + s.version = "0.5.0" | ||
| 4 | 4 | s.summary = "River is a fast job queue for Go." | |
| 5 | 5 | 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." | |
| 6 | 6 | s.authors = ["Blake Gentry", "Brandur Leach"] | |
| Back | FazBrowse Home | New Git URL |
0 commit comments