Skip to content

Commit e40dbbc

Browse files
committed
Bump to 0.2.0
1 parent c39eba9 commit e40dbbc

File tree

3 files changed

+56
-86
lines changed

3 files changed

+56
-86
lines changed

.github/workflows/nightly-build.yml renamed to .github/workflows/binary-build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
name: Nightly build
1+
name: Binary build
22

33
on:
44
push:
55
branch:
66
- 'main'
7+
- 'stable'
78

89
env:
910
CARGO_TERM_COLOR: always
@@ -37,6 +38,6 @@ jobs:
3738
- name: Upload build artifacts
3839
uses: softprops/action-gh-release@v1
3940
with:
40-
tag_name: nightly
41+
tag_name: bin-${{ github.ref_name }}
4142
files: |
4243
${{ steps.artifacts.outputs.artifact }}

Cargo.lock

Lines changed: 51 additions & 82 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "memflow-native"
3-
version = "0.2.0-beta11"
3+
version = "0.2.0"
44
authors = ["Aurimas Blažulionis <[email protected]>", "ko1N <[email protected]>"]
55
edition = "2021"
66
description = "System call based proxy-OS for memflow"
@@ -16,7 +16,7 @@ categories = [ "api-bindings", "memory-management", "os" ]
1616
crate-type = ["lib", "cdylib"]
1717

1818
[dependencies]
19-
memflow = { version = "=0.2.0-beta11", features = ["plugins"] }
19+
memflow = { version = "0.2", features = ["plugins"] }
2020
log = "0.4"
2121
libc = { version = "0.2.90" }
2222
itertools = "0.12"

0 commit comments

Comments
 (0)