From fcac8c4fcc43072380b79829359555956258b37f Mon Sep 17 00:00:00 2001 From: PauloCampana Date: Mon, 13 May 2024 18:04:49 -0300 Subject: [PATCH] v1.0.0 --- README.md | 4 ++-- build.zig.zon | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f707f2a..e2c045d 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,13 @@ For over 30 probability distributions, this library provides: Avaliable on # Importing library -Requires Zig version 0.12.0-dev.3200 or above. +Requires Zig version 0.12.0 or above. Grab the commit hash of the version you want to use and in your `build.zig.zon`, add inside the dependencies: ```zig .random_variable = .{ - .url = "https://github.com/paulocampana/random_variable/archive/{commit_hash_here}.tar.gz", + .url = "https://github.com/paulocampana/random_variable/archive/v1.0.0.tar.gz", // .hash = "leave this commented, compiler will tell you what to put here", }, ``` diff --git a/build.zig.zon b/build.zig.zon index b814947..8cf1cef 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,7 +1,7 @@ .{ .name = "random_variable", - .version = "0.31.0", - .minimum_zig_version = "0.12.0-dev.3200", + .version = "1.0.0", + .minimum_zig_version = "0.12.0", .dependencies = .{}, .paths = .{ "build.zig",