summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoricebaker <icebaker@proton.me>2023-05-21 19:19:19 -0300
committericebaker <icebaker@proton.me>2023-05-21 19:19:19 -0300
commite0864ca05206f2d2512f29bd8b14fd20816361f4 (patch)
tree417f058699715b524cdbcd59790768f844c45d2a
parenta0ad2a136da85e9757f1a91f58e5e31e9d692929 (diff)
bump to 0.0.7
-rw-r--r--Gemfile.lock2
-rw-r--r--README.md8
-rw-r--r--docker-compose.example.yml2
-rw-r--r--static/gem.rb2
4 files changed, 7 insertions, 7 deletions
diff --git a/Gemfile.lock b/Gemfile.lock
index a186ed8..3c9346a 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- nano-bots (0.0.6)
+ nano-bots (0.0.7)
babosa (~> 2.0)
dotenv (~> 2.8, >= 2.8.1)
faraday (~> 2.7, >= 2.7.4)
diff --git a/README.md b/README.md
index 56d632e..f946f1d 100644
--- a/README.md
+++ b/README.md
@@ -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.6
+gem install nano-bots -v 0.0.7
```
To use it in a project, add it to your `Gemfile`:
```ruby
-gem 'nano-bots', '~> 0.0.6'
+gem 'nano-bots', '~> 0.0.7'
```
```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.6 && bash"
+ command: sh -c "gem install nano-bots -v 0.0.7 && 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.6.gem
+gem push nano-bots-0.0.7.gem
```
diff --git a/docker-compose.example.yml b/docker-compose.example.yml
index b5cbd2f..fefc6f4 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.6 && 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.7 && 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 cc661fb..e75b020 100644
--- a/static/gem.rb
+++ b/static/gem.rb
@@ -3,7 +3,7 @@
module NanoBot
GEM = {
name: 'nano-bots',
- version: '0.0.6',
+ version: '0.0.7',
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.',