Version 0.3.1
This commit is contained in:
parent
c6db34694a
commit
f93af6c717
3 changed files with 6 additions and 6 deletions
|
@ -28,7 +28,7 @@ _ZRM_ provides a simple interface to relational databases in Zig. Define your re
|
|||
|
||||
## Versions
|
||||
|
||||
ZRM 0.3.0 is made and tested with zig 0.13.0.
|
||||
ZRM 0.3.1 is made and tested with zig 0.13.0.
|
||||
|
||||
## Work in progress
|
||||
|
||||
|
@ -41,7 +41,7 @@ ZRM aims to handle a lot for you, but it takes time to make. Have a look to [the
|
|||
In your project directory:
|
||||
|
||||
```shell
|
||||
$ zig fetch --save https://code.zeptotech.net/zedd/zrm/archive/v0.3.0.tar.gz
|
||||
$ zig fetch --save https://code.zeptotech.net/zedd/zrm/archive/v0.3.1.tar.gz
|
||||
```
|
||||
|
||||
In `build.zig`:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.{
|
||||
.name = "zrm",
|
||||
.version = "0.3.0",
|
||||
.version = "0.3.1",
|
||||
|
||||
.minimum_zig_version = "0.13.0",
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
You can easily install ZRM using the `zig fetch` command:
|
||||
|
||||
```shell
|
||||
$ zig fetch --save https://code.zeptotech.net/zedd/zrm/archive/v0.3.0.tar.gz
|
||||
$ zig fetch --save https://code.zeptotech.net/zedd/zrm/archive/v0.3.1.tar.gz
|
||||
```
|
||||
|
||||
::: info
|
||||
|
@ -18,8 +18,8 @@ This should add something like the following in `build.zig.zon` dependencies:
|
|||
.dependencies = .{
|
||||
// ...
|
||||
.zrm = .{
|
||||
.url = "https://code.zeptotech.net/zedd/zrm/archive/v0.3.0.tar.gz",
|
||||
.hash = "12200fe147879d72381633e6f44d76db2c8a603cda1969b4e474c15c31052dbb24b7",
|
||||
.url = "https://code.zeptotech.net/zedd/zrm/archive/v0.3.1.tar.gz",
|
||||
.hash = "12200fe...",
|
||||
},
|
||||
// ...
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue