rice 4.6.0 → 4.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0415303e9003a2751cb4fcf3488f068359a805ed3a3df83010aa6ca032c504c9
4
- data.tar.gz: 895d2ce47c9daa951362c7854e3bf228a3d88c3efd04a0d79f0a8acc898c6cec
3
+ metadata.gz: 7751b2018cc34ce9a256db07afdac1c1334f10df1c858e08943cfe65ccc3a0b0
4
+ data.tar.gz: a8e25ea390438e8ba30450501f955724e25a1fe6fcdc9b0504a393ac60af9585
5
5
  SHA512:
6
- metadata.gz: 3ee378cf6732ec73edd4ea33c47f58c87a996b380b019edeb3b2f279e4576924de79529ddfc086898e6d3d0f713859d8363ace294f3a621848e1d401a477b10d
7
- data.tar.gz: 3d9834d152b559902cd378d4d00de32efbffc06ab8e5104bd895ae4f96848de2e0b42536b212cb83e154d1eb503cb9eefc2a4dad0b27a510b9fa1da5d40a9b9a
6
+ metadata.gz: 7ac0157d22f781cf34dd1d4704df142bc42e34d811c73c1e24ef3fbb3247161f2a0e76d80584aadc09eb6d97181dbb4a957518161a9afb89f61166cce08983bc
7
+ data.tar.gz: 38e129eb196928cba4bf2f003651fc7e273df2abaf605664d76cd036993d70c507e4c31fa4e09e61252c8ef71aa701390c80a2247f20419e95d37a674002be26
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 4.6.1 (2025-06-25)
2
+ * Improve attribute handling. Correctly deal with non-copyable/assignable attributes and return references instead of copies of objects
3
+ * Improve Buffer implementation to deal with 4 cases:
4
+ - array of fundamental types (int*)
5
+ - array of pointers fundamental types (char**)
6
+ - array of objects (someInstance*)
7
+ - array of pointers of objects (someInstance**)
8
+ * Implement Buffer#to_s
9
+ * Fix header check on Ubuntu 22.04
10
+
1
11
  ## 4.6.0 (2025-06-09)
2
12
  Rice 4.6 is a major release that adds significant new functionality based on wrapping the OpenCV library, including:
3
13