From 6edb1b0c1df4fb40e662d327edc6c60647b7dc1b Mon Sep 17 00:00:00 2001 From: VegetableProphet Date: Tue, 30 Nov 2021 15:42:22 +0300 Subject: [PATCH] Fix docs (#61) * fix docs * fix docs 2 * gemfile --- CHANGELOG.md | 4 ++++ Gemfile.lock | 10 ++++------ docs/publishing/configuration.md | 2 +- lib/table_sync/version.rb | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 233db0b..2143cb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [6.0.1] - 2021-11-30 +### Fixed +- fixed docs + ## [6.0.0] - 2021-10-15 ### Added diff --git a/Gemfile.lock b/Gemfile.lock index 1bb4d12..4051ab7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - table_sync (6.0) + table_sync (6.0.1) memery rabbit_messaging rails @@ -102,12 +102,10 @@ GEM memery (1.4.1) ruby2_keywords (~> 0.0.2) method_source (1.0.0) - mini_mime (1.1.1) - mini_portile2 (2.6.1) + mini_mime (1.1.2) minitest (5.14.4) nio4r (2.5.8) - nokogiri (1.12.5) - mini_portile2 (~> 2.6.1) + nokogiri (1.12.5-x86_64-linux) racc (~> 1.4) parallel (1.20.1) parser (3.0.0.0) @@ -123,7 +121,7 @@ GEM rails (>= 5.2) sneakers (~> 2.0) tainbox - racc (1.5.2) + racc (1.6.0) rack (2.2.3) rack-test (1.1.0) rack (>= 1.0, < 3) diff --git a/docs/publishing/configuration.md b/docs/publishing/configuration.md index 3f508c9..2c93016 100644 --- a/docs/publishing/configuration.md +++ b/docs/publishing/configuration.md @@ -129,7 +129,7 @@ One possible way of using it is defining a headers exchange and routing rules ba Example: ```ruby -TableSync.routing_metadata_callable = -> (klass, attributes) { attributes.slice("project_id") } +TableSync.headers_callable = -> (klass, attributes) { attributes.slice("project_id") } ``` ## Other diff --git a/lib/table_sync/version.rb b/lib/table_sync/version.rb index 58792dd..24de597 100644 --- a/lib/table_sync/version.rb +++ b/lib/table_sync/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module TableSync - VERSION = "6.0" + VERSION = "6.0.1" end