diff --git a/CHANGELOG.md b/CHANGELOG.md index d80df53..2c3c5aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +**Version 3.0.1** + - Adds elapsed time and ETA to the job status page (https://github.com/kenaniah/sidekiq-status/pull/13) + **Version 3.0.0** - Drops support for Sidekiq 5.x - Adds support for Sidekiq 7.x diff --git a/README.md b/README.md index 2da8c80..ce8408c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # Sidekiq::Status [![Gem Version](https://badge.fury.io/rb/sidekiq-status.svg)](https://badge.fury.io/rb/sidekiq-status) [![Build Status](https://github.com/kenaniah/sidekiq-status/actions/workflows/ci.yaml/badge.svg)](https://github.com/kenaniah/sidekiq-status/actions/) -[![Inline docs](https://inch-ci.org/github/kenaniah/sidekiq-status.svg?branch=main)](https://inch-ci.org/github/kenaniah/sidekiq-status) Sidekiq-status is an extension to [Sidekiq](https://github.com/mperham/sidekiq) that tracks information about your Sidekiq and provides a UI to that purpose. It was inspired by [resque-status](https://github.com/quirkey/resque-status). @@ -21,6 +20,10 @@ Or install it yourself as: gem install sidekiq-status ``` +### Migrating to Version 3.x from 2.x + +Version 3.0.0 adds support for Sidekiq 7.x, but drops support for Sidekiq 5.x. **You should be able to upgrade cleanly from version 2.x to 3.x provided you are running Sidekiq 6.x or newer.** + #### Migrating to Version 2.x from 1.x Version 2.0.0 was published in order to add support for Ruby 3.0 and Sidekiq 6.x and to remove support for versions of both that are now end-of-life. **You should be able to upgrade cleanly from version 1.x to 2.x provided you are running Sidekiq 5.x or newer.** diff --git a/lib/sidekiq-status/version.rb b/lib/sidekiq-status/version.rb index 22f62a1..831788d 100644 --- a/lib/sidekiq-status/version.rb +++ b/lib/sidekiq-status/version.rb @@ -1,5 +1,5 @@ module Sidekiq module Status - VERSION = '3.0.0' + VERSION = '3.0.1' end end