Skip to content

Commit

Permalink
bumping to 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
icebaker committed May 27, 2023
1 parent f3050ea commit 87233a4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
nano-bots (0.0.8)
nano-bots (0.0.9)
babosa (~> 2.0)
dotenv (~> 2.8, >= 2.8.1)
faraday (~> 2.7, >= 2.7.5)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8
gem install nano-bots -v 0.0.9
```

To use it in a project, add it to your `Gemfile`:

```ruby
gem 'nano-bots', '~> 0.0.8'
gem 'nano-bots', '~> 0.0.9'
```

```sh
Expand Down Expand Up @@ -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.8 && bash"
command: sh -c "gem install nano-bots -v 0.0.9 && bash"
environment:
OPENAI_API_ADDRESS: https://api.openai.com
OPENAI_API_ACCESS_TOKEN: your-token
Expand Down Expand Up @@ -288,5 +288,5 @@ gem build nano-bots.gemspec

gem signin

gem push nano-bots-0.0.8.gem
gem push nano-bots-0.0.9.gem
```
2 changes: 1 addition & 1 deletion docker-compose.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.8 && 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.9 && bash"
environment:
OPENAI_API_ADDRESS: https://api.openai.com
OPENAI_API_ACCESS_TOKEN: your-token
Expand Down
2 changes: 1 addition & 1 deletion static/gem.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module NanoBot
GEM = {
name: 'nano-bots',
version: '0.0.8',
version: '0.0.9',
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.',
Expand Down

0 comments on commit 87233a4

Please sign in to comment.