y-rb 0.4.3-arm64-darwin → 0.4.4-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8eea30f96c7db73fde59aef4749d521622ba17b0a2309bdc39de5d0a4c230dce
4
- data.tar.gz: 285021293d9d7b98b7a143584e54108c6e8e3a9a3bc4b444ae38c8cd650502bb
3
+ metadata.gz: 94479f4beaa4c8d615afc8779b856a82827e2a292004dc61e1969da3254c49dc
4
+ data.tar.gz: ca5ff6fef5191eeec60177fa22e8d061f87673845c0623ea2b3723238302dcb8
5
5
  SHA512:
6
- metadata.gz: 5f0f532a529e9fdbc5486009454c9280353e9162b7a4d5899c3ced923e8cbd49b1e397a60034950b82e7e8a8e6cacae92e91ec94beb173de702bb643587bab97
7
- data.tar.gz: 27a0d8db91e3ed03d02faa8f6037d44ac25fae68b6e4c70613f6247ae402a8c38d29a141ad2e72407e192da7706c4d55fd56c2e2c937a38febf090c5a35e2d85
6
+ metadata.gz: 070a4af377f24372a5d2bff9bc76c161f9dcab63eee71bd32a917868b51255cd7f5c9f16656a4c1f13f37f3b017327dd02e518a4a80cbbd0fb0d63a83ce59f28
7
+ data.tar.gz: 49e96cb13a47e59544972f18201089b13939f23a92152b2db02bfe132d99643f067e9a09a5143327270866b034ce0b12178688abedaa1fc4e0d347e1d2d0e8b7
data/ext/yrb/Cargo.toml CHANGED
@@ -1,16 +1,16 @@
1
1
  [package]
2
2
  name = "yrb"
3
- version = "0.4.3"
3
+ version = "0.4.4"
4
4
  authors = ["Hannes Moser <box@hannesmoser.at>", "Hannes Moser <hmoser@gitlab.com>"]
5
5
  edition = "2021"
6
6
  homepage = "https://github.com/y-crdt/yrb"
7
7
  repository = "https://github.com/y-crdt/yrb"
8
8
 
9
9
  [dependencies]
10
- lib0 = "0.15.0" # must match yrs version
10
+ lib0 = "0.16.0" # must match yrs version
11
11
  magnus = { git = "https://github.com/matsadler/magnus", rev = "ab982c3643421b38f3293f1fe014aa373abfd6dc" }
12
12
  thiserror = "1.0.38"
13
- yrs = "0.15.0"
13
+ yrs = "0.16.0"
14
14
 
15
15
  [dev-dependencies]
16
16
  magnus = { git = "https://github.com/matsadler/magnus", rev = "ab982c3643421b38f3293f1fe014aa373abfd6dc", features = ["embed"] }
@@ -76,7 +76,7 @@ impl YXmlElement {
76
76
  index: u32,
77
77
  content: String,
78
78
  ) -> YXmlText {
79
- let text = XmlTextPrelim(content.as_str());
79
+ let text = XmlTextPrelim::new(content.as_str());
80
80
  let mut tx = transaction.transaction();
81
81
  let tx = tx.as_mut().unwrap();
82
82
 
@@ -204,7 +204,7 @@ impl YXmlElement {
204
204
  let mut tx = transaction.transaction();
205
205
  let tx = tx.as_mut().unwrap();
206
206
 
207
- let text = XmlTextPrelim(content.as_str());
207
+ let text = XmlTextPrelim::new(content.as_str());
208
208
  YXmlText::from(self.0.borrow_mut().push_back(tx, text))
209
209
  }
210
210
  pub(crate) fn yxml_element_push_text_front(
@@ -215,7 +215,7 @@ impl YXmlElement {
215
215
  let mut tx = transaction.transaction();
216
216
  let tx = tx.as_mut().unwrap();
217
217
 
218
- let text = XmlTextPrelim(content.as_str());
218
+ let text = XmlTextPrelim::new(content.as_str());
219
219
  YXmlText::from(self.0.borrow_mut().push_front(tx, text))
220
220
  }
221
221
  pub(crate) fn yxml_element_remove_attribute(&self, transaction: &YTransaction, name: String) {
data/lib/2.7/yrb.bundle CHANGED
Binary file
data/lib/3.0/yrb.bundle CHANGED
Binary file
data/lib/3.1/yrb.bundle CHANGED
Binary file
Binary file
data/lib/y/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Y
4
- VERSION = "0.4.3"
4
+ VERSION = "0.4.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: y-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Hannes Moser
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-23 00:00:00.000000000 Z
11
+ date: 2023-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -24,6 +24,7 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '13.0'
27
+ force_ruby_platform: false
27
28
  - !ruby/object:Gem::Dependency
28
29
  name: rb_sys
29
30
  requirement: !ruby/object:Gem::Requirement
@@ -38,6 +39,7 @@ dependencies:
38
39
  - - "~>"
39
40
  - !ruby/object:Gem::Version
40
41
  version: 0.9.56
42
+ force_ruby_platform: false
41
43
  - !ruby/object:Gem::Dependency
42
44
  name: rake-compiler
43
45
  requirement: !ruby/object:Gem::Requirement
@@ -94,6 +96,7 @@ files:
94
96
  - lib/2.7/yrb.bundle
95
97
  - lib/3.0/yrb.bundle
96
98
  - lib/3.1/yrb.bundle
99
+ - lib/3.2/yrb.bundle
97
100
  - lib/y-rb.rb
98
101
  - lib/y.rb
99
102
  - lib/y/array.rb
@@ -113,7 +116,7 @@ metadata:
113
116
  source_code_uri: https://github.com/y-crdt/yrb
114
117
  documentation_uri: https://y-crdt.github.io/yrb/
115
118
  rubygems_mfa_required: 'true'
116
- post_install_message:
119
+ post_install_message:
117
120
  rdoc_options: []
118
121
  require_paths:
119
122
  - lib
@@ -124,15 +127,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
124
127
  version: '2.7'
125
128
  - - "<"
126
129
  - !ruby/object:Gem::Version
127
- version: 3.2.dev
130
+ version: 3.3.dev
128
131
  required_rubygems_version: !ruby/object:Gem::Requirement
129
132
  requirements:
130
133
  - - ">="
131
134
  - !ruby/object:Gem::Version
132
135
  version: 3.3.21
133
136
  requirements: []
134
- rubygems_version: 3.3.22
135
- signing_key:
137
+ rubygems_version: 3.4.4
138
+ signing_key:
136
139
  specification_version: 4
137
140
  summary: Ruby bindings for yrs
138
141
  test_files: []