Skip to content

Commit

Permalink
Change version number to 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtung committed Mar 27, 2017
1 parent 58f0a46 commit 2e7a452
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 20 deletions.
25 changes: 6 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,30 +72,17 @@ System.out.println(unicode);
To add dependency on LaTeX2Unicode, insert the following to your `pom.xml` file if you use Apache Maven:

```xml
<repositories>
<!-- Other repositories ... -->
<repository>
<id>Sonatype OSS Snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>

<dependencies>
<!-- Other dependencies ... -->
<dependency>
<groupId>com.github.tomtung</groupId>
<artifactId>latex2unicode_2.12</artifactId>
<version>0.2-SNAPSHOT</version>
</dependency>
</dependencies>
<dependency>
<groupId>com.github.tomtung</groupId>
<artifactId>latex2unicode_2.12</artifactId>
<version>0.2</version>
</dependency>
```

or add the following to your `build.sbt` file if you use sbt 0.11+:

```scala
libraryDependencies += "com.github.tomtung" %% "latex2unicode" % "0.2-SNAPSHOT"

resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies += "com.github.tomtung" %% "latex2unicode" % "0.2"
```
# Credits

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "latex2unicode"

organization := "com.github.tomtung"

version := "0.2-SNAPSHOT"
version := "0.2"

scalaVersion := "2.12.1"

Expand Down

0 comments on commit 2e7a452

Please sign in to comment.