Skip to content

Commit 34e3123

Browse files
committed
feat(changelog): Use clog for changelogs
1 parent 7fca1d2 commit 34e3123

File tree

4 files changed

+79
-229
lines changed

4 files changed

+79
-229
lines changed

.clog.toml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[clog]
2+
3+
repository = "https://github.com/rust-lang/rustlings"
4+
changelog = "CHANGELOG.md"

CHANGELOG.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<a name="1.3.0"></a>
2+
### 1.3.0 (2019-06-05)
3+
4+
#### Features
5+
6+
- Adds a simple exercise for structures (#163, @briankung)
7+
8+
#### Bug Fixes
9+
10+
- Add Result type signature as it is difficult for new comers to understand Generics and Error all at once. (#157, @veggiemonk)
11+
- Rustfmt and whitespace fixes (#161, @eddyp)
12+
- errorsn.rs: Separate also the hints from each other to avoid accidental viewing (#162, @eddyp)
13+
- fixed outdated links (#165, @gushroom)
14+
- Fix broken link (#164, @HanKruiger)
15+
- Remove highlighting and syntect (#167, @komaeda)
16+
17+
<a name="1.2.2"></a>
18+
### 1.2.2 (2019-05-07)
19+
20+
#### Bug Fixes
21+
22+
- Reverted `--nocapture` flag since it was causing tests to pass unconditionally
23+
24+
<a name="1.2.1"></a>
25+
### 1.2.1 (2019-04-22)
26+
27+
#### Bug Fixes
28+
29+
- Fix the `--nocapture` feature (@komaeda)
30+
- Provide a nicer error message for when you're in the wrong directory
31+
32+
<a name="1.2.0"></a>
33+
### 1.2.0 (2019-04-22)
34+
35+
#### Features
36+
37+
- Add errors to exercises that compile without user changes (@yvan-sraka)
38+
- Use --nocapture when testing, enabling `println!` when running (@komaeda)
39+
40+
<a name="1.1.1"></a>
41+
### 1.1.1 (2019-04-14)
42+
43+
#### Bug fixes
44+
45+
- Fix permissions on exercise files (@zacanger, #133)
46+
- Make installation checks more thorough (@komaeda, 1b3469f236bc6979c27f6e1a04e4138a88e55de3)
47+
- Fix order of true/false in tests for executables (@mgeier, #137)
48+
- Stop run from panicking when compile fails (@cjpearce, #141)
49+
- Fix intermittent test failure caused by race condition (@cjpearce, #140)
50+
- Fix links by deleting book version (@diodfr, #142)
51+
- Canonicalize paths to fix path matching (@cjpearce, #143)
52+
53+
<a name="1.1.0"></a>
54+
### 1.1.0 (2019-03-20)
55+
56+
- errors2.rs: update link to Rust book (#124)
57+
- Start verification at most recently modified file (#120)
58+
- Watch for file creation events in watch mode (#117)
59+
- Add standard library types to exercises suite (#119)
60+
- Give a warning when Rustlings isn't run from the right directory (#123)
61+
- Verify that rust version is recent enough to install Rustlings (#131)
62+
63+
<a name="1.0.1"></a>
64+
### 1.0.1 (2019-03-06)
65+
66+
- Adds a way to install Rustlings in one command (`curl -L https://git.io/rustlings | bash`)
67+
- Makes `rustlings watch` react to create file events (@shaunbennett, #117)
68+
- Reworks the exercise management to use an external TOML file instead of just listing them in the code
69+
70+
<a name="1.0.0"></a>
71+
### 1.0.0 (2019-03-06)
72+
73+
Initial release.

0 commit comments

Comments
 (0)