Skip to content

Commit 24f2817

Browse files
Merge pull request #137 from dfinity/FI-849-add-release-files
feat(FI-849) add ChangeLog file
2 parents 7952e69 + f40a489 commit 24f2817

27 files changed

+135
-13
lines changed

Cargo.Bazel.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"checksum": "2c1439d8a6f5e5e947910f79f08a6957329dd8faa28fd090d90b8fee05d5fb05",
2+
"checksum": "41576ceb43e32a3fb2b400b5fa00fb7aa37834862450e06db58276ca71be46cb",
33
"crates": {
44
"addr2line 0.20.0": {
55
"name": "addr2line",
@@ -5076,7 +5076,7 @@
50765076
},
50775077
"version": "0.1.0"
50785078
},
5079-
"license": null
5079+
"license": "Apache-2.0"
50805080
},
50815081
"icrc1-test-env-replica 0.1.0": {
50825082
"name": "icrc1-test-env-replica",
@@ -5139,7 +5139,7 @@
51395139
},
51405140
"version": "0.1.0"
51415141
},
5142-
"license": null
5142+
"license": "Apache-2.0"
51435143
},
51445144
"icrc1-test-env-state-machine 0.1.0": {
51455145
"name": "icrc1-test-env-state-machine",
@@ -5194,7 +5194,7 @@
51945194
},
51955195
"version": "0.1.0"
51965196
},
5197-
"license": null
5197+
"license": "Apache-2.0"
51985198
},
51995199
"icrc1-test-replica 0.1.0": {
52005200
"name": "icrc1-test-replica",
@@ -5240,7 +5240,7 @@
52405240
"edition": "2018",
52415241
"version": "0.1.0"
52425242
},
5243-
"license": null
5243+
"license": "Apache-2.0"
52445244
},
52455245
"icrc1-test-runner 0.1.0": {
52465246
"name": "icrc1-test-runner",
@@ -5284,7 +5284,7 @@
52845284
"edition": "2018",
52855285
"version": "0.1.0"
52865286
},
5287-
"license": null
5287+
"license": "Apache-2.0"
52885288
},
52895289
"icrc1-test-suite 0.1.0": {
52905290
"name": "icrc1-test-suite",
@@ -5326,7 +5326,7 @@
53265326
"edition": "2018",
53275327
"version": "0.1.0"
53285328
},
5329-
"license": null
5329+
"license": "Apache-2.0"
53305330
},
53315331
"idna 0.2.3": {
53325332
"name": "idna",

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,10 @@ ring = "0.16.20"
2222
serde = "=1.0.171"
2323
tempfile = "3.3"
2424
tokio = { version = "1.20.1", features = ["macros"] }
25+
26+
[workspace.package]
27+
authors = ["DFINITY Stiftung <[email protected]>"]
28+
edition = "2018"
29+
repository = "https://github.com/dfinity/ICRC-1"
30+
rust-version = "1.31.0"
31+
license = "Apache-2.0"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Ledger & Tokenization Working Group Standards
2+
[![CI](https://github.com/dfinity/ICRC-1/actions/workflows/ci.yml/badge.svg)](https://github.com/dfinity/ICRC-1/actions/workflows/ci.yml)
23

34
This repository contains standards for the [Internet Computer](https://internetcomputer.org) accepted by the Ledger & Tokenization Working Group.
45

test/env/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[package]
22
name = "icrc1-test-env"
3-
edition = "2018"
43
version = "0.1.0"
4+
authors = { workspace = true }
5+
edition = { workspace = true }
6+
license = { workspace = true }
7+
rust-version = { workspace = true }
8+
repository = { workspace = true }
59

610
[lib]
711
path = "lib.rs"

test/env/Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [0.1.0] - 2023-26-07
8+
### Added
9+
- Original release.

test/env/LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../LICENSE

test/env/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# ICRC1 Test Suite Environment
2+
=======================
3+
[![CI](https://github.com/dfinity/ICRC-1/actions/workflows/ci.yml/badge.svg)](https://github.com/dfinity/ICRC-1/actions/workflows/ci.yml)
4+
=======================
5+
This crate provides the traits that define the environment for the ICRC1 test suite.

test/env/replica/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[package]
22
name = "icrc1-test-env-replica"
3-
edition = "2018"
43
version = "0.1.0"
4+
authors = { workspace = true }
5+
edition = { workspace = true }
6+
license = { workspace = true }
7+
rust-version = { workspace = true }
8+
repository = { workspace = true }
59

610
[lib]
711
path = "lib.rs"

test/env/replica/Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [0.1.0] - 2023-26-07
8+
### Added
9+
- Original release.

test/env/replica/LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../LICENSE

0 commit comments

Comments
 (0)