Version 1.0.0

This commit is contained in:
Erik C. Thauvin 2025-03-16 20:10:17 -07:00
parent a748e4139c
commit 8ebcca5bfe
Signed by: erik
GPG key ID: 776702A6A2DA330E
6 changed files with 10 additions and 10 deletions

View file

@ -55,7 +55,7 @@ To use with [bld](https://rife2.com/bld), include the following dependency in yo
repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
scope(compile) scope(compile)
.include(dependency("net.thauvin.erik:pinboard-poster:1.1.1")); .include(dependency("net.thauvin.erik:pinboard-poster:1.2.0"));
``` ```
Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project. Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project.
@ -71,7 +71,7 @@ repositories {
} }
dependencies { dependencies {
compile 'net.thauvin.erik:pinboard-poster:1.1.1' compile 'net.thauvin.erik:pinboard-poster:1.2.0'
} }
``` ```

View file

@ -25,7 +25,7 @@ public class ExampleBuild extends BaseProject {
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
scope(compile) scope(compile)
.include(dependency("net.thauvin.erik", "pinboard-poster", version(1, 1, 2, "SNAPSHOT"))); .include(dependency("net.thauvin.erik", "pinboard-poster", version(1, 2, 0)));
} }
public static void main(String[] args) { public static void main(String[] args) {

View file

@ -21,5 +21,5 @@ repositories {
} }
dependencies { dependencies {
implementation 'net.thauvin.erik:pinboard-poster:1.1.2-SNAPSHOT' implementation 'net.thauvin.erik:pinboard-poster:1.2.0'
} }

View file

@ -14,7 +14,7 @@ repositories {
} }
dependencies { dependencies {
implementation("net.thauvin.erik:pinboard-poster:1.1.1") implementation("net.thauvin.erik:pinboard-poster:1.2.0")
} }
java { java {

View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId> <groupId>net.thauvin.erik</groupId>
<artifactId>pinboard-poster</artifactId> <artifactId>pinboard-poster</artifactId>
<version>1.1.2-SNAPSHOT</version> <version>1.2.0</version>
<name>pinboard-poster</name> <name>pinboard-poster</name>
<description>A small library for posting to Pinboard</description> <description>A small library for posting to Pinboard</description>
<url>https://github.com/ethauvin/pinboard-poster</url> <url>https://github.com/ethauvin/pinboard-poster</url>
@ -18,19 +18,19 @@
<dependency> <dependency>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId> <artifactId>kotlin-stdlib</artifactId>
<version>2.1.0</version> <version>2.1.10</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId> <artifactId>kotlin-stdlib-common</artifactId>
<version>2.1.0</version> <version>2.1.10</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId> <artifactId>kotlin-stdlib-jdk8</artifactId>
<version>2.1.0</version> <version>2.1.10</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>

View file

@ -60,7 +60,7 @@ public class PinboardPosterBuild extends Project {
public PinboardPosterBuild() { public PinboardPosterBuild() {
pkg = "net.thauvin.erik"; pkg = "net.thauvin.erik";
name = "pinboard-poster"; name = "pinboard-poster";
version = version(1, 1, 2, "SNAPSHOT"); version = version(1, 2, 0);
mainClass = pkg + ".PinboardPoster"; mainClass = pkg + ".PinboardPoster";