Skip to content

Commit 542313f

Browse files
committed
bump version to v0.2.0
1 parent 1725cf7 commit 542313f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ FROM mhart/alpine-node:12
33
WORKDIR /src
44
ENV PATH /src:$PATH
55

6-
ENV MONKEY_VERSION=0.1.5
6+
ENV MONKEY_VERSION=0.2.0
77
RUN npm install -g monkey-typescript@${MONKEY_VERSION}
88
ENTRYPOINT ["monkey-typescript"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ and(1, false); // false
4545
or(1, false); // true
4646
```
4747

48-
$ npx monkey-typescript example.monkey
48+
$ npx monkey-typescript examples/example.monkey
4949
Log: 0
5050
Log: 1
5151
Log: 2
@@ -134,12 +134,12 @@ or watch for file changes:
134134
# bump version number in `package.json`
135135
# bump version number in `Dockerfile`
136136
# commit and push changes
137-
$ git commit -m'bump version to v0.1.5'
137+
$ git commit -m'bump version to v0.2.0'
138138
$ git push
139139
$ npm run build
140140
$ npm publish
141141
$ git tag v0.1.3
142-
$ git push origin v0.1.3
142+
$ git push origin v0.2.0
143143

144144
## Credits
145145

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monkey-typescript",
3-
"version": "0.1.5",
3+
"version": "0.2.0",
44
"description": "A Monkey language interpreter in Typescript",
55
"main": "build/index",
66
"types": "build/index",

0 commit comments

Comments
 (0)