Skip to content

Commit

Permalink
0.5.0: Update unifont
Browse files Browse the repository at this point in the history
  • Loading branch information
squid233 committed Nov 19, 2023
1 parent 7c0c33e commit 7c4651c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Utilities Bill of Materials.

## Usage

```groovy
```kotlin
dependencies {
implementation(platform("io.github.over-run:utilities:0.4.0"))
implementation(platform("io.github.over-run:utilities:0.5.0"))
}
```
5 changes: 1 addition & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,9 @@ publishing {
}
developers {
developers.split(',')
.map { it.split(':', limit = 3) }
.forEach { (id1, name1, email1) ->
.forEach { id1 ->
developer {
id.set(id1)
name.set(name1)
email.set(email1)
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ binPackingVersion=0.5.0
binTagVersion=0.2.0
poolingVersion=0.1.0
timerVersion=0.3.0
unifontVersion=15.1.01.1
unifontVersion=15.1.04

# Project information
projGroupId=io.github.over-run
projArtifactId=utilities
projName=utilities
projVersion=0.4.1
projVersion=0.5.0
projVcs=Over-Run/utilities
projBranch=main

Expand All @@ -19,4 +19,4 @@ orgName=Overrun Organization
orgUrl=https://over-run.github.io/

# Developers
developers=squid233:squid233:[email protected]
developers=squid233
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down

0 comments on commit 7c4651c

Please sign in to comment.