Compare commits

...

2 Commits

Author SHA1 Message Date
02abfefee4
package: bump version
Some checks failed
CI / build (-Dbuild-apps, true, ubuntu-latest, master) (push) Has been cancelled
CI / build (macos-latest, 0.13.0) (push) Has been cancelled
CI / build (ubuntu-latest, 0.12.1) (push) Has been cancelled
CI / build (ubuntu-latest, 0.13.0) (push) Has been cancelled
CI / build (windows-latest, 0.13.0) (push) Has been cancelled
2024-10-03 16:24:22 -07:00
Antoine
5ba009c755 Fix unfortunate typo 2024-10-03 16:31:34 +02:00
3 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ pub fn build(b: *std.Build) !void {
const upstream = b.dependency("libressl", .{});
const libressl_common: LibreSslCommon = .{
.libcrypto = b.addStaticLibrary(.{
.name = "cypto",
.name = "crypto",
.target = target,
.optimize = optimize,
}),

View File

@ -1,6 +1,6 @@
.{
.name = "libressl",
.version = "3.9.2",
.version = "3.9.2+1",
.minimum_zig_version = "0.12.0",
.dependencies = .{
.libressl = .{

View File

@ -21,7 +21,7 @@ First, update your `build.zig.zon`:
```sh
# Initialize a `zig build` project if you haven't already
zig init
# replace <refname> with the version you want to use, e.g. 3.9.2
# replace <refname> with the version you want to use, e.g. 3.9.2+1
zig fetch --save git+https://github.com/allyourcodebase/libressl#<refname>
```
@ -40,4 +40,4 @@ your_exe.linkLibrary(libressl_dependency.artifact("tls")); // or "ssl", or "cryp
| Refname | LibreSSL Version | Zig `0.12.x` | Zig `0.13.x` | Zig `0.14.0-dev` |
|----------|------------------|--------------|--------------|------------------|
| `3.9.2` | `3.9.2` | ✅ | ✅ | ✅ |
| `3.9.2+1`| `3.9.2+1` | ✅ | ✅ | ✅ |