Skip to content

Commit

Permalink
Prep for v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Abscissa committed Mar 3, 2017
1 parent ea70b76 commit 0ada97b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -17,3 +17,4 @@ tests/.testExample*
tests/bin/

*.exe
/tests/.o
6 changes: 3 additions & 3 deletions USAGE.md
Expand Up @@ -18,7 +18,7 @@ myscript.d:
#!/usr/bin/env dub
/+ dub.sdl:
name "myscript"
dependency "scriptlike" version="~>0.10.1"
dependency "scriptlike" version="~>0.10.2"
+/
import scriptlike;
Expand Down Expand Up @@ -78,13 +78,13 @@ just include the scriptlike as a dependency in your
dub.json:
```json
"dependencies": {
"scriptlike": "~>0.10.1"
"scriptlike": "~>0.10.2"
}
```

dub.sdl:
```
dependency "scriptlike" version="~>0.10.1"
dependency "scriptlike" version="~>0.10.2"
```

And then import with one of these:
Expand Down
2 changes: 1 addition & 1 deletion ddoc/changelog.d
Expand Up @@ -6,7 +6,7 @@ $(LINK http://semitwist.com/scriptlike/changelog.html)
(Dates below are YYYY/MM/DD)
$(H2 v0.10.2 - TBD)
$(H2 v0.10.2 - 2017/03/03)
$(UL
$(ENHANCE
Expand Down
2 changes: 1 addition & 1 deletion examples/dub-project/dub.json
Expand Up @@ -3,6 +3,6 @@
"targetType": "executable",
"mainSourceFile": "myscript.d",
"dependencies": {
"scriptlike": "~>0.10.1"
"scriptlike": "~>0.10.2"
}
}
2 changes: 1 addition & 1 deletion examples/dub-project/dub.sdl
@@ -1,4 +1,4 @@
name "myscript"
targetType "executable"
mainSourceFile "myscript.d"
dependency "scriptlike" version="~>0.10.1"
dependency "scriptlike" version="~>0.10.2"
2 changes: 1 addition & 1 deletion examples/dub-project/dub.selections.json
@@ -1,6 +1,6 @@
{
"fileVersion": 1,
"versions": {
"scriptlike": "0.10.1"
"scriptlike": "0.10.2"
}
}
2 changes: 1 addition & 1 deletion examples/single-file/myscript.d
@@ -1,7 +1,7 @@
#!/usr/bin/env dub
/+ dub.sdl:
name "myscript"
dependency "scriptlike" version="~>0.10.1"
dependency "scriptlike" version="~>0.10.2"
+/
import scriptlike;

Expand Down

0 comments on commit 0ada97b

Please sign in to comment.