Skip to content

Commit

Permalink
finalized v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerbrandl committed Dec 5, 2017
1 parent a311467 commit 66bd19d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ In addition to the provided shell utilities, joblist can be also used programati
<dependency>
<groupId>de.mpicbg.scicomp</groupId>
<artifactId>joblist</artifactId>
<version>0.7</version>
<version>0.7.1</version>
<type>pom</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt.Resolver
name := "joblist"
organization := "de.mpicbg.scicomp"

version := "0.8-SNAPSHOT"
version := "0.7.1"

scalaVersion := "2.11.7"

Expand Down
5 changes: 3 additions & 2 deletions docs/devel_joblist.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ Before getting started:
* make sure to now use any non-public SNAPSHOT dependencies
1) Increment version in build.sbt, `joblist.JobListCLI.version`
1) Increment version in [`build.sbt`](../build.sbt), [JobListCLI](../src/main/scala/joblist/JobListCLI.scala#L25-L28)
2) Update version in README.md (installation and sbt inclusion)
2) Push and and create version on github
3) Build assembly jar, build tar.gz with
```
```bash
cd /dir/with/joblist
rm -rf target ## to get rid of old version-tag assebmly
Expand All @@ -125,6 +125,7 @@ tar -cvzf joblist_installer_v${version}.tar.gz joblist_v${version}
cp joblist_installer_v${version}.tar.gz /Users/brandl/Dropbox/Public/joblist_releases
```

4) Attach installer to release

5) Create new version on [jcenter](https://bintray.com/holgerbrandl/mpicbg-scicomp/joblist/view`
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/joblist/JobListCLI.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import scalautils.{Bash, ShellUtils}
*/
object JobListCLI extends App {

val version = "0.8-SNAPSHOT"
val version = "0.7.1"


if (args.length == 1 && (args(0) == "-v" || args(0) == "--version")) {
Expand Down

0 comments on commit 66bd19d

Please sign in to comment.