Skip to content

Commit

Permalink
Prepare 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Brooks committed Sep 28, 2020
1 parent f72855d commit 132ceeb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ vgo is a tool for optimizing vector artwork files that helps ensure your vector

## Installation

Download the distribution from the releases page. Unzip it. Add the `bin` folder to your path.
Download the distribution from the releases page and ensure it has execute permission. On macOS & Linux run `chmod +x vgo`.

## Command Line Interface

Expand All @@ -22,6 +22,8 @@ Options:
--format [value] output format (svg, vd, etc) - ALPHA
```

> `java -jar vgo` for Windows
## Examples

```
Expand All @@ -42,7 +44,7 @@ Options:

This project uses the Gradle build system.

To run the application: `/.gradlew run --args="[arguments]"`
To build the binary: `/.gradlew binary`

To run the tests: `./gradlew check`

Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
==========

## 1.2.0
_09.28.2020_

* Improvement: Resort to distribution via a fat jar. Requires managing fewer files and results in a smaller installation since R8 can operate on classes from dependencies as well.
* Improvement: Use R8 for optimization. R8 produces a slightly smaller jar and in some cases faster code as well.

## 1.1.1
_07.13.2020_

Expand Down
4 changes: 4 additions & 0 deletions vgo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ tasks {

val binaryFile = file("$buildDir/libs/vgo")
val binary by registering {
description = "Prepends shell script in the jar to improve CLI"
group = "build"

dependsOn(optimize)

inputs.file(optimizedJar)
outputs.file(binaryFile)

Expand Down
2 changes: 1 addition & 1 deletion vgo/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.1.1
version=1.2.0

0 comments on commit 132ceeb

Please sign in to comment.