Skip to content

Commit 2b8e020

Browse files
authored
Release v0.3.0 (#66)
* Release v0.3.0 * fix the pr template
1 parent c3a99ac commit 2b8e020

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Before we can merge this PR, please make sure that all the following items have
1818
checked off. If any of the checklist items are not applicable, please leave them but
1919
write a little note why.
2020

21-
- [ ] Targeted PR against correct branch (main)
21+
- [ ] Targeted PR against correct branch (master)
2222
- [ ] Linked to Github issue with discussion and accepted design OR have an explanation in the PR that describes this work.
2323
- [ ] Wrote unit tests
2424
- [ ] Updated relevant documentation in the code

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
## Pending
1+
# CHANGELOG
2+
3+
## Pending
4+
5+
### Breaking changes
6+
7+
### Features
8+
9+
### Improvements
10+
11+
### Bug Fixes
12+
13+
## v0.3.0
214

315
### Breaking changes
416

@@ -16,7 +28,6 @@
1628

1729
### Bug Fixes
1830

19-
2031
## v0.2.0
2132

2233
### Breaking changes

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ark-r1cs-std"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = [ "arkworks contributors" ]
55
description = "A standard library for constraint system gadgets"
66
homepage = "https://arkworks.rs"
@@ -19,19 +19,19 @@ panic = 'abort'
1919
panic = 'abort'
2020

2121
[dependencies]
22-
ark-ff = { version = "^0.2.0", default-features = false }
23-
ark-ec = { version = "^0.2.0", default-features = false }
24-
ark-std = { version = "^0.2.0", default-features = false }
25-
ark-relations = { version = "^0.2.0", default-features = false }
22+
ark-ff = { version = "^0.3.0", default-features = false }
23+
ark-ec = { version = "^0.3.0", default-features = false }
24+
ark-std = { version = "^0.3.0", default-features = false }
25+
ark-relations = { version = "^0.3.0", default-features = false }
2626

2727
derivative = { version = "2", features = ["use_core"] }
2828
tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
2929
num-bigint = {version = "0.4", default-features = false }
3030
num-traits = {version = "0.2", default-features = false }
3131

3232
[dev-dependencies]
33-
ark-test-curves = { version = "^0.2.0", default-features = false, features = ["bls12_381_scalar_field", "mnt4_753_scalar_field"] }
34-
ark-poly = { version = "^0.2.0", default-features = false }
33+
ark-test-curves = { version = "^0.3.0", default-features = false, features = ["bls12_381_scalar_field", "mnt4_753_scalar_field"] }
34+
ark-poly = { version = "^0.3.0", default-features = false }
3535

3636
[features]
3737
default = ["std"]

0 commit comments

Comments
 (0)