diff --git a/CHANGELOG.md b/CHANGELOG.md index e97339f..e48674d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.1 (14-Oct-20) + +* Minor bug fixes and spec updates + ## 1.0.0 (01-Oct-20) * Added export feature diff --git a/README.md b/README.md index f2f185a..361f4e3 100644 --- a/README.md +++ b/README.md @@ -70,10 +70,12 @@ You can also run the import and export tasks from the Rails app: require "#{Rails.root}/config/lokalise_rails.rb" # Import the files: -LokaliseRails::TaskDefinition::Importer.import! +result = LokaliseRails::TaskDefinition::Importer.import! +# `result` contains a boolean value with the result of the operation # Export the files: -LokaliseRails::TaskDefinition::Exporter.export! +processes = LokaliseRails::TaskDefinition::Exporter.export! +# `processes` contains a list of queued background processes ``` ## Configuration diff --git a/lib/lokalise_rails/version.rb b/lib/lokalise_rails/version.rb index a339c17..66eb4fd 100644 --- a/lib/lokalise_rails/version.rb +++ b/lib/lokalise_rails/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module LokaliseRails - VERSION = '1.0.0' + VERSION = '1.0.1' end