Skip to content

Commit 8305aa5

Browse files
committedJun 28, 2020
prepare v0.8.0 release
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
1 parent 97c0bce commit 8305aa5

File tree

5 files changed

+724
-633
lines changed

5 files changed

+724
-633
lines changed
 

‎CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
8383

8484
Resulting in a folder structure like the following:
8585

86-
```
86+
```text
8787
- .vscode
8888
- coderoad (test runner files only with their own setup)
8989
- package.json
@@ -114,7 +114,7 @@ Resulting in a folder structure like the following:
114114

115115
- New configuration environment variables for web compatability
116116

117-
```
117+
```text
118118
CODEROAD_DISABLE_RUN_ON_SAVE=true // blocks saving on file system changes
119119
CODEROAD_DISPLAY_RUN_TEST_BUTTON=true // adds a run test button to tutorial page
120120
CODEROAD_TUTORIAL_URL='path/to/tutorial_config_file.json' // will load directly into tutorial
@@ -157,3 +157,21 @@ CODEROAD_TUTORIAL_URL='path/to/tutorial_config_file.json' // will load directly
157157
}
158158
}
159159
```
160+
161+
### [0.8.0]
162+
163+
- Support Python with using [tap.py](https://github.com/python-tap/tappy)
164+
- Fix paragraph spacing
165+
- Support hints - clues that reveal on click to help guide users. Hints can be added to a step, see an example below.
166+
167+
```md
168+
### 1.1
169+
170+
A description of the task.
171+
172+
#### HINTS
173+
174+
- The first hint
175+
- The second hint
176+
- The last hint
177+
```

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coderoad",
3-
"version": "0.7.2",
3+
"version": "0.8.0",
44
"description": "Play interactive coding tutorials in your editor",
55
"keywords": [
66
"tutorial",

‎web-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coderoad-app",
3-
"version": "0.7.2",
3+
"version": "0.8.0",
44
"private": true,
55
"scripts": {
66
"build": "react-app-rewired build",

0 commit comments

Comments
 (0)
Failed to load comments.