Skip to content

Commit f208b7d

Browse files
fix: add query builder
1 parent d8f7def commit f208b7d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

appwrite.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Gem::Specification.new do |spec|
22

33
spec.name = 'appwrite'
4-
spec.version = '3.0.0'
4+
spec.version = '3.0.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'
88
spec.homepage = 'https://appwrite.io/support'
99
spec.email = 'team@appwrite.io'
1010
spec.files = Dir['lib/**/*.rb']
1111

12-
spec.add_dependency 'mime-types', '~> 3.3.1'
12+
spec.add_dependency 'mime-types', '~> 3.4.1'
1313
end

lib/appwrite/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Client
1111
def initialize
1212
@headers = {
1313
'user-agent' => RUBY_PLATFORM + ':ruby-' + RUBY_VERSION,
14-
'x-sdk-version' => 'appwrite:ruby:3.0.0',
14+
'x-sdk-version' => 'appwrite:ruby:3.0.1',
1515
'X-Appwrite-Response-Format' => '0.12.0'
1616
}
1717
@endpoint = 'https://HOSTNAME/v1'

0 commit comments

Comments
 (0)