Skip to content

Commit

Permalink
release: version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Aug 15, 2021
1 parent 97e0990 commit 3a95ba5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repositories {
}
dependencies {
implementation "org.spongepowered:math:2.0.0"
implementation "org.spongepowered:math:2.0.1"
}
```

Expand All @@ -49,7 +49,7 @@ If you're using [Maven] to manage project dependencies, simply include the follo
<dependency>
<groupId>org.spongepowered</groupId>
<artifactId>math</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</dependency>
```

Expand Down
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import org.gradle.external.javadoc.StandardJavadocDocletOptions
import groovy.text.SimpleTemplateEngine

import java.io.StringWriter
import java.util.stream.Collectors

plugins {
Expand All @@ -14,7 +13,7 @@ plugins {
// -- General setup -- //

group = "org.spongepowered"
version = "2.0.1-SNAPSHOT"
version = "2.0.1"
description = "Immutable math library for Java with a focus on games and computer graphics."

repositories {
Expand Down Expand Up @@ -50,7 +49,7 @@ def intData = file("src/templateData/integer.yaml")
def licenseText = objects.property(String)
licenseText.set(provider {
def properties = [*: license.ext.properties]
def template = new groovy.text.SimpleTemplateEngine().createTemplate(file("HEADER.txt")).make(properties)
def template = new SimpleTemplateEngine().createTemplate(file("HEADER.txt")).make(properties)
def text = template.toString()
def lineEnding = license.lineEnding.get()
Arrays.stream(text.split("\r?\n"))
Expand Down

0 comments on commit 3a95ba5

Please sign in to comment.