Skip to content

Commit c4c0a8e

Browse files
committed
chore: updates for next rc release
1 parent 99b208b commit c4c0a8e

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

appwrite.gemspec

Lines changed: 1 addition & 1 deletion
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.0.0-rc.3'
4+
spec.version = '12.0.0-rc.4'
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

Lines changed: 1 addition & 1 deletion
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.0.0-rc.3',
18+
'x-sdk-version'=> '12.0.0-rc.4',
1919
'X-Appwrite-Response-Format' => '1.6.0'
2020
}
2121
@endpoint = 'https://cloud.appwrite.io/v1'

lib/appwrite/enums/runtime.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module Runtime
4646
CPP_17 = 'cpp-17'
4747
CPP_20 = 'cpp-20'
4848
BUN_1_0 = 'bun-1.0'
49-
GO_1_22 = 'go-1.22'
49+
GO_1_23 = 'go-1.23'
5050
end
5151
end
5252
end

lib/appwrite/models/deployment.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class Deployment
1111
attr_reader :resource_type
1212
attr_reader :entrypoint
1313
attr_reader :size
14+
attr_reader :build_size
1415
attr_reader :build_id
1516
attr_reader :activate
1617
attr_reader :status
@@ -36,6 +37,7 @@ def initialize(
3637
resource_type:,
3738
entrypoint:,
3839
size:,
40+
build_size:,
3941
build_id:,
4042
activate:,
4143
status:,
@@ -60,6 +62,7 @@ def initialize(
6062
@resource_type = resource_type
6163
@entrypoint = entrypoint
6264
@size = size
65+
@build_size = build_size
6366
@build_id = build_id
6467
@activate = activate
6568
@status = status
@@ -87,6 +90,7 @@ def self.from(map:)
8790
resource_type: map["resourceType"],
8891
entrypoint: map["entrypoint"],
8992
size: map["size"],
93+
build_size: map["buildSize"],
9094
build_id: map["buildId"],
9195
activate: map["activate"],
9296
status: map["status"],
@@ -115,6 +119,7 @@ def to_map
115119
"resourceType": @resource_type,
116120
"entrypoint": @entrypoint,
117121
"size": @size,
122+
"buildSize": @build_size,
118123
"buildId": @build_id,
119124
"activate": @activate,
120125
"status": @status,

0 commit comments

Comments
 (0)