Skip to content

Commit d71fe0f

Browse files
authored
Merge pull request alexrudall#136 from alexrudall/3.0.0
3.0.0
2 parents bc4c73a + 85aafa7 commit d71fe0f

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.0.0] - 2022-12-26
9+
10+
### Added
11+
12+
- Add ability to set access_token via gem configuration.
13+
- Thanks [@grjones](https://github.com/grjones) and [@aquaflamingo](https://github.com/aquaflamingo) for raising this and [@feministy](https://github.com/feministy) for the [excellent guide](https://github.com/feministy/lizabinante.com/blob/stable/source/2016-01-30-creating-a-configurable-ruby-gem.markdown#configuration-block-the-end-goal) to adding config to a gem.
14+
15+
### Removed
16+
17+
- [BREAKING] Remove ability to include access_token directly via ENV vars.
18+
- [BREAKING] Remove deprecated answers, classifications, embeddings, engines and search endpoints.
19+
- [BREAKING] Remove ability to pass engine to completions and embeddings outside of the parameters hash.
20+
- [BREAKING] Remove ability to pass API version directly to endpoints.
21+
822
## [2.3.0] - 2022-12-23
923

1024
### Added

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ruby-openai (2.3.0)
4+
ruby-openai (3.0.0)
55
httparty (>= 0.18.1, < 0.21.0)
66

77
GEM

lib/ruby/openai/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Ruby
22
module OpenAI
3-
VERSION = "2.3.0".freeze
3+
VERSION = "3.0.0".freeze
44
end
55
end

0 commit comments

Comments
 (0)