Skip to content

Commit ddca8f4

Browse files
authored
Merge pull request #31 from appwrite/1.6.x
Fix publish
2 parents 37d2188 + 6f85902 commit ddca8f4

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/publish.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ jobs:
1919

2020
- name: Set up RubyGems
2121
run: |
22-
cat "---\n:rubygems_api_key: ${{ secrets.RUBYGEMS_TOKEN }}\n" > ~/.gem/credentials
22+
echo -e "---\n:rubygems_api_key: $RUBYGEMS_TOKEN\n" > ~/.gem/credentials
2323
chmod 0600 ~/.gem/credentials
24+
env:
25+
RUBYGEMS_TOKEN: $
2426

2527
- name: Build gem
2628
run: gem build appwrite.gemspec

appwrite.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |spec|
22

33
spec.name = 'appwrite'
4-
spec.version = '12.1.0'
4+
spec.version = '12.1.1'
55
spec.license = 'BSD-3-Clause'
66
spec.summary = 'Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API'
77
spec.author = 'Appwrite Team'

lib/appwrite/client.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def initialize
1515
'x-sdk-name'=> 'Ruby',
1616
'x-sdk-platform'=> 'server',
1717
'x-sdk-language'=> 'ruby',
18-
'x-sdk-version'=> '12.1.0',
18+
'x-sdk-version'=> '12.1.1',
1919
'X-Appwrite-Response-Format' => '1.6.0'
2020
}
2121
@endpoint = 'https://cloud.appwrite.io/v1'

lib/appwrite/enums/runtime.rb

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ module Runtime
2121
PYTHON_3_11 = 'python-3.11'
2222
PYTHON_3_12 = 'python-3.12'
2323
PYTHON_ML_3_11 = 'python-ml-3.11'
24+
DENO_1_21 = 'deno-1.21'
25+
DENO_1_24 = 'deno-1.24'
26+
DENO_1_35 = 'deno-1.35'
2427
DENO_1_40 = 'deno-1.40'
2528
DART_2_15 = 'dart-2.15'
2629
DART_2_16 = 'dart-2.16'

0 commit comments

Comments
 (0)