Skip to content

Commit 4c0720a

Browse files
authored
Update hashsums (#175)
Co-authored-by: Skycoder42 <9221346+Skycoder42@users.noreply.github.com>
1 parent 1fdd095 commit 4c0720a

14 files changed

+20
-15
lines changed

packages/sodium_libs/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.4.6+4] - 2025-11-04
8+
### Changed
9+
- Updated embedded libsodium binaries
10+
711
## [3.4.6+3] - 2025-10-21
812
### Changed
913
- Updated embedded libsodium binaries
@@ -446,6 +450,7 @@ the page
446450
### Added
447451
- Initial stable release
448452

453+
[3.4.6+4]: https://github.com/Skycoder42/libsodium_dart_bindings/compare/sodium_libs-v3.4.6+3...sodium_libs-v3.4.6+4
449454
[3.4.6+3]: https://github.com/Skycoder42/libsodium_dart_bindings/compare/sodium_libs-v3.4.6+2...sodium_libs-v3.4.6+3
450455
[3.4.6+2]: https://github.com/Skycoder42/libsodium_dart_bindings/compare/sodium_libs-v3.4.6+1...sodium_libs-v3.4.6+2
451456
[3.4.6+1]: https://github.com/Skycoder42/libsodium_dart_bindings/compare/sodium_libs-v3.4.6...sodium_libs-v3.4.6+1

packages/sodium_libs/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = "de.skycoder42.sodium_libs"
2-
version = "3.4.6+3"
2+
version = "3.4.6+4"
33

44
buildscript {
55
ext.kotlin_version = "2.1.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3b91a47253cb916eba4f2995b1272dd164d9ee8e53b174712275eab8502a592ba8c1f91752c4af0da0dfba44b157857dd36cbc8eb708b14296b7275518f3d1fa libsodium-1.0.20-android.zip
1+
caa1903f9dd890e0ac1e38e32e697932b2dfa2db96c03f4ddb681ff066c73949d67686d671769de5421368beaf0e7ad60fe178f37d11bed491dbb24d7b7760f9 libsodium-1.0.20-android.zip
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://github.com/Skycoder42/libsodium_dart_bindings/releases/download/libsodium-binaries/v1.0.20%2B18671922006/libsodium-1.0.20-android.zip
1+
https://github.com/Skycoder42/libsodium_dart_bindings/releases/download/libsodium-binaries/v1.0.20%2B19056898356/libsodium-1.0.20-android.zip
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
07eaf7e5330fabec0b725f8506b02db13fc7ff4f6710e86a03e0b481a0903b30937c3efd6870903416340a425484aa9244ed61c8ca924dea72d777e46fbc110e libsodium-1.0.20-darwin.zip
1+
72d17996c385629f5d0f45d6ee8aac0f5cd51cdc7bbcfcf30b835b4effcd5ba7e0062716c3b382b1e705458c49ddc336de448dd2fa5118d86826e94e548a6a9d libsodium-1.0.20-darwin.zip
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://github.com/Skycoder42/libsodium_dart_bindings/releases/download/libsodium-binaries/v1.0.20%2B18671922006/libsodium-1.0.20-darwin.zip
1+
https://github.com/Skycoder42/libsodium_dart_bindings/releases/download/libsodium-binaries/v1.0.20%2B19056898356/libsodium-1.0.20-darwin.zip

packages/sodium_libs/darwin/sodium_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'sodium_libs'
7-
s.version = '3.4.6+3'
7+
s.version = '3.4.6+4'
88
s.summary = 'Flutter companion package to sodium that provides the low-level libsodium binaries for easy use.'
99
s.description = <<-DESC
1010
Flutter companion package to sodium that provides the low-level libsodium binaries for easy use.

packages/sodium_libs/darwin/sodium_libs/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ let package = Package(
2323
),
2424
.binaryTarget(
2525
name: "libsodium",
26-
url: "https://github.com/Skycoder42/libsodium_dart_bindings/releases/download/libsodium-binaries/v1.0.20%2B18671922006/libsodium-1.0.20-darwin.zip",
27-
checksum: "c55362d2ebc86fa7b89a1e161c49cbd83c2ceecba9a1ea8ad982f8ff7e2ab756"
26+
url: "https://github.com/Skycoder42/libsodium_dart_bindings/releases/download/libsodium-binaries/v1.0.20%2B19056898356/libsodium-1.0.20-darwin.zip",
27+
checksum: "3ad2da2f58113f5e61ff45a397997ab9fe371fd7cf1a196ed342610d85153100"
2828
),
2929
]
3030
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b07d71a94a8fa827b8bbbcdd7ccc075f55cdeda29b72d008677746829ae0c41e6a3b82658ef09b4ff627a2de8d719a56963087d1ddb3172f64ee671e889cc8cf libsodium-1.0.20-linux.tar.xz
1+
d6cc926799f39063b9fd530eb31c889662275337ebaef0f15eb7eb897c37a57ede350d01b88afbc29c2e60e1f7b823cf0684eb893ef39b3a22dd1f061fbb65f0 libsodium-1.0.20-linux.tar.xz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://github.com/Skycoder42/libsodium_dart_bindings/releases/download/libsodium-binaries/v1.0.20%2B18671922006/libsodium-1.0.20-linux.tar.xz
1+
https://github.com/Skycoder42/libsodium_dart_bindings/releases/download/libsodium-binaries/v1.0.20%2B19056898356/libsodium-1.0.20-linux.tar.xz

0 commit comments

Comments
 (0)