diff --git a/README.md b/README.md index 8a42ffe..f7875b7 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,19 @@ Supported probes: * Acfs: Remote calls including tracing middleware * ActionController: Processing actions and rendering -* ActiveView: Template and Partial rendering +* ActionDispatch: Error capturing +* ActiveJob: Background job execution * ActiveRecord: SQL query time +* ActiveView: Template and Partial rendering +* Faraday: HTTP client operations and tracing injection * Grape: Endpoint run, filter and render times * Mnemosyne: Custom traces +* Msgr: Event publishing and consumer processing +* Rack: Middleware for request tracing +* Redis: Client operations * Responders: render time * Restify: Remote calls including tracing middleware * Sidekiq: Client and server tracing -* Rack: Middleware for request tracing * ViewComponent: Component rendering (needs [additional configuration](https://viewcomponent.org/guide/instrumentation.html)) ## Installation @@ -21,15 +26,11 @@ Supported probes: Add this line to your Gemfile: ```ruby -gem 'mnemosyne-ruby', '~> 1.0' +gem 'mnemosyne-ruby', '~> 2.0' ``` Note: Removing support for ancient Ruby or Rails versions will not result in a new major. Please be extra careful when using ancient Ruby or Rails versions and updating gems. -## Usage - -TODO - ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT). diff --git a/lib/mnemosyne/version.rb b/lib/mnemosyne/version.rb index b0eee9b..22c2219 100644 --- a/lib/mnemosyne/version.rb +++ b/lib/mnemosyne/version.rb @@ -2,8 +2,8 @@ module Mnemosyne module VERSION - MAJOR = 1 - MINOR = 17 + MAJOR = 2 + MINOR = 0 PATCH = 0 STAGE = nil