Skip to content
This repository was archived by the owner on Mar 23, 2021. It is now read-only.

Commit d43e166

Browse files
bors[bot]luckysori
andauthored
Merge #263
263: Release 0.5.2 r=luckysori a=luckysori Co-authored-by: Lucas Soriano del Pino <l.soriano.del.pino@gmail.com>
2 parents 1cde937 + f9d6782 commit d43e166

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

.npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-comit-app",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": " Set up a local development environment for COMIT apps with one command.",
55
"main": "cca.js",
66
"scripts": {

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## Unreleased
8+
9+
## [0.5.2] - 2019-12-06
10+
11+
## Changed
12+
- Upgrade all examples and new project to `comit-sdk@0.7.1`.
813

914
## [0.5.1] - 2019-12-02
1015

@@ -56,7 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5661

5762
### Changed
5863
- Move start-env env file to `~/.create-comit-app/env` so that the user does not have to start it from inside the project folder.
59-
- If a signal (e.g. CTRL-C) is sent while `start-env` is booting, it waits for the action in progress (e.g., starting docker container) and then stops and properly cleans up the environment.
64+
- If a signal (e.g. CTRL-C) is sent while `start-env` is booting, it waits for the action in progress (e.g., starting docker container) and then stops and properly cleans up the environment.
6065
- Improve code quality to avoid artifacts remaining after a failure happens while booting start-env.
6166
- Migrate to comit-rs 0.3.0. Only the `cnd` docker is now needed!
6267
- Move the env file from `./.env` to `~/.create-comit-app/env` to improve usability.
@@ -66,7 +71,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6671

6772
First Release 🎉
6873

69-
[Unreleased]: https://github.com/comit-network/create-comit-app/compare/0.5.1...HEAD
74+
[Unreleased]: https://github.com/comit-network/create-comit-app/compare/0.5.2...HEAD
75+
[0.5.2]: https://github.com/comit-network/create-comit-app/compare/0.5.1...0.5.2
7076
[0.5.1]: https://github.com/comit-network/create-comit-app/compare/0.5.0...0.5.1
7177
[0.5.0]: https://github.com/comit-network/create-comit-app/compare/0.4.0...0.5.0
7278
[0.4.0]: https://github.com/comit-network/create-comit-app/compare/0.3.0...0.4.0

new_project/examples/btc_eth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"license": "ISC",
1515
"devDependencies": {
1616
"@types/readline-sync": "^1.4.3",
17-
"create-comit-app": "^0.5.1",
17+
"create-comit-app": "^0.5.2",
1818
"jest": "^24.9.0",
1919
"prettier": "^1.19.1",
2020
"ts-node": "^8.5.4",

new_project/examples/erc20_btc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"license": "ISC",
1515
"devDependencies": {
1616
"@types/readline-sync": "^1.4.3",
17-
"create-comit-app": "^0.5.1",
17+
"create-comit-app": "^0.5.2",
1818
"prettier": "^1.19.1",
1919
"ts-node": "^8.5.4",
2020
"tslint": "^5.20.1",

new_project/examples/separate_apps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"license": "ISC",
1616
"devDependencies": {
1717
"@types/readline-sync": "^1.4.3",
18-
"create-comit-app": "^0.5.1",
18+
"create-comit-app": "^0.5.2",
1919
"prettier": "^1.19.1",
2020
"ts-node": "^8.5.4",
2121
"tslint": "^5.20.1",

new_project/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"readline-sync": "^1.4.10"
1414
},
1515
"devDependencies": {
16-
"create-comit-app": "^0.5.1"
16+
"create-comit-app": "^0.5.2"
1717
}
1818
}

tests/run_example.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ TEST_PASSED=false
6565

6666
cd "${EXAMPLE_DIR}"
6767

68+
yarn remove create-comit-app > /dev/null
6869
yarn install > /dev/null
6970

7071
yarn run swap > "${LOG_FILE}" 2>&1 &

0 commit comments

Comments
 (0)