diff options
author | icebaker <icebaker@proton.me> | 2023-05-16 19:33:46 -0300 |
---|---|---|
committer | icebaker <icebaker@proton.me> | 2023-05-16 19:33:46 -0300 |
commit | 81071238b24faeb91d329c62957381bcf429c522 (patch) | |
tree | b06dacbf6b1963ac1efcc7776d3eef13cc916b14 | |
parent | 72e1756495ae47903da0189c8963688e3cc5c499 (diff) |
bump to 0.0.6
-rw-r--r-- | Gemfile.lock | 6 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | docker-compose.example.yml | 2 | ||||
-rw-r--r-- | static/gem.rb | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 32a6f2d..a186ed8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - nano-bots (0.0.5) + nano-bots (0.0.6) babosa (~> 2.0) dotenv (~> 2.8, >= 2.8.1) faraday (~> 2.7, >= 2.7.4) @@ -64,13 +64,13 @@ GEM parser (>= 3.2.1.0) rubocop-capybara (2.18.0) rubocop (~> 1.41) - rubocop-factory_bot (2.22.0) + rubocop-factory_bot (2.23.1) rubocop (~> 1.33) rubocop-rspec (2.22.0) rubocop (~> 1.33) rubocop-capybara (~> 2.17) rubocop-factory_bot (~> 2.22) - ruby-openai (4.0.0) + ruby-openai (4.1.0) faraday (>= 1) faraday-multipart (>= 1) ruby-progressbar (1.13.0) @@ -23,13 +23,13 @@ https://user-images.githubusercontent.com/113217272/238141567-c58a240c-7b67-4b3b For a system usage: ```sh -gem install nano-bots -v 0.0.5 +gem install nano-bots -v 0.0.6 ``` To use it in a project, add it to your `Gemfile`: ```ruby -gem 'nano-bots', '~> 0.0.5' +gem 'nano-bots', '~> 0.0.6' ``` ```sh @@ -76,7 +76,7 @@ version: '3.7' services: nano-bots: image: ruby:3.2.2-slim-bullseye - command: sh -c "gem install nano-bots -v 0.0.5 && bash" + command: sh -c "gem install nano-bots -v 0.0.6 && bash" environment: OPENAI_API_ADDRESS: https://api.openai.com OPENAI_API_ACCESS_TOKEN: your-token @@ -254,5 +254,5 @@ gem build nano-bots.gemspec gem signin -gem push nano-bots-0.0.5.gem +gem push nano-bots-0.0.6.gem ``` diff --git a/docker-compose.example.yml b/docker-compose.example.yml index d6a1bbd..b5cbd2f 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -3,7 +3,7 @@ version: '3.7' services: nano-bots: image: ruby:3.2.2-slim-bullseye - command: sh -c "apt-get update && apt-get install -y --no-install-recommends build-essential libffi-dev lua5.4-dev && gem install nano-bots -v 0.0.5 && bash" + command: sh -c "apt-get update && apt-get install -y --no-install-recommends build-essential libffi-dev lua5.4-dev && gem install nano-bots -v 0.0.6 && bash" environment: OPENAI_API_ADDRESS: https://api.openai.com OPENAI_API_ACCESS_TOKEN: your-token diff --git a/static/gem.rb b/static/gem.rb index 4d30a2f..cc661fb 100644 --- a/static/gem.rb +++ b/static/gem.rb @@ -3,7 +3,7 @@ module NanoBot GEM = { name: 'nano-bots', - version: '0.0.5', + version: '0.0.6', author: 'icebaker', summary: 'Ruby Implementation of Nano Bots: small, AI-powered bots', description: 'Ruby Implementation of Nano Bots: small, AI-powered bots easily shared as a single file, designed to support multiple providers such as Vicuna, OpenAI ChatGPT, Google PaLM, Alpaca, and LLaMA.', |