Skip to content

Commit

Permalink
Merge pull request #31 from appwrite/1.6.x
Browse files Browse the repository at this point in the history
Fix publish
  • Loading branch information
stnguyen90 authored Oct 8, 2024
2 parents 37d2188 + 6f85902 commit ddca8f4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ jobs:

- name: Set up RubyGems
run: |
cat "---\n:rubygems_api_key: ${{ secrets.RUBYGEMS_TOKEN }}\n" > ~/.gem/credentials
echo -e "---\n:rubygems_api_key: $RUBYGEMS_TOKEN\n" > ~/.gem/credentials
chmod 0600 ~/.gem/credentials
env:
RUBYGEMS_TOKEN: $

- name: Build gem
run: gem build appwrite.gemspec
Expand Down
2 changes: 1 addition & 1 deletion appwrite.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |spec|

spec.name = 'appwrite'
spec.version = '12.1.0'
spec.version = '12.1.1'
spec.license = 'BSD-3-Clause'
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'
spec.author = 'Appwrite Team'
Expand Down
2 changes: 1 addition & 1 deletion lib/appwrite/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def initialize
'x-sdk-name'=> 'Ruby',
'x-sdk-platform'=> 'server',
'x-sdk-language'=> 'ruby',
'x-sdk-version'=> '12.1.0',
'x-sdk-version'=> '12.1.1',
'X-Appwrite-Response-Format' => '1.6.0'
}
@endpoint = 'https://cloud.appwrite.io/v1'
Expand Down
3 changes: 3 additions & 0 deletions lib/appwrite/enums/runtime.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ module Runtime
PYTHON_3_11 = 'python-3.11'
PYTHON_3_12 = 'python-3.12'
PYTHON_ML_3_11 = 'python-ml-3.11'
DENO_1_21 = 'deno-1.21'
DENO_1_24 = 'deno-1.24'
DENO_1_35 = 'deno-1.35'
DENO_1_40 = 'deno-1.40'
DART_2_15 = 'dart-2.15'
DART_2_16 = 'dart-2.16'
Expand Down

0 comments on commit ddca8f4

Please sign in to comment.