Skip to content

Commit 55a80b9

Browse files
author
Cian Butler
authored
Revert "New Release" (#45)
This reverts commit c9a57e9.
1 parent c9a57e9 commit 55a80b9

5 files changed

Lines changed: 21 additions & 18 deletions

File tree

.changeset/good-boats-kiss.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"evervault-ruby": patch
3+
---
4+
5+
tidy up string encryption

.changeset/little-queens-attend.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
"evervault-ruby": patch
3+
---
4+
5+
Improved API for configuring the Evervault::Client.
6+
7+
Previously there was no way to set the curve used for encryption. This can now
8+
be configured via the .configure method.
9+
10+
```
11+
Evervault.configure do |config|
12+
config.curve = "secp256k1"
13+
end
14+
```

CHANGELOG.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,5 @@
11
# evervault-ruby
22

3-
## 3.0.1
4-
5-
### Patch Changes
6-
7-
- c0e039d: tidy up string encryption
8-
- 17f3dab: Improved API for configuring the Evervault::Client.
9-
10-
Previously there was no way to set the curve used for encryption. This can now
11-
be configured via the .configure method.
12-
13-
```
14-
Evervault.configure do |config|
15-
config.curve = "secp256k1"
16-
end
17-
```
18-
193
## 3.0.0
204

215
### Major Changes

lib/evervault/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

33
module Evervault
4-
VERSION = "3.0.1"
4+
VERSION = '3.0.0'
55
EV_VERSION = { 'prime256v1' => 'QkTC', 'secp256k1' => 'S0lS' }.freeze
66
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "evervault-ruby",
33
"private": true,
4-
"version": "3.0.1",
4+
"version": "3.0.0",
55
"scripts": {
66
"version": "changeset version && PACKAGE_VERSION=$(node -p \"require('./package.json').version\") && sed -i \"s/ VERSION .*/ VERSION = \\\"$PACKAGE_VERSION\\\"/\" lib/evervault/version.rb"
77
},

0 commit comments

Comments
 (0)