Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Releases: Noelware/remi

v0.1.0-beta

18 Apr 01:54
a640ee9
Compare
Choose a tag to compare

🎉 We are now in beta!!! 🎉

Additions

  • feat: add in StorageTrailer.listAll/0 by @auguwu

Dependency Updates

  • chore: upgrade Gradle from 7.3.2 to 7.4.2 by @renovate-bot
  • chore: upgrade Kotlin (compiler, serialization plugin) from 1.6.10 to 1.6.20 by @renovate-bot
  • chore: upgrade org.jetbrains.kotlinx:kotlinx-serialization-bom from 1.3.1 to 1.3.2 by @renovate-bot
  • chore: upgrade org.jetbrains.kotlinx:kotlinx-coroutines-bom from 1.6.0-native-mt to 1.6.1 by @renovate-bot
  • chore: upgrade software.amazon.awssdk:bom from 2.17.133 to v2.17.172 by @renovate-bot
  • chore: upgrade io.kotest:kotest-bom from 5.0.3 to 5.2.3 by @renovate-bot
  • chore: upgrade org.jetbrains.dokka:dokka-gradle-plugin from 1.6.10 to 1.6.20 by @renovate-bot
  • chore: upgrade actions/setup-java from v2 to v3 by @renovate-bot
  • chore: upgrade actions/checkout from v2 to v3 by @renovate-bot

Commit History: v0.0.4-SNAPSHOT...v0.1.0-beta

v0.0.4-SNAPSHOT

24 Feb 16:03
bb2a9b9
Compare
Choose a tag to compare
v0.0.4-SNAPSHOT Pre-release
Pre-release

v0.0.4-SNAPSHOT

This release contains improvements to the Amazon S3 provider, that's pretty much it! And it unit tests the S3 provider to check
for issues.

v0.0.3-SNAPSHOT

23 Feb 05:58
4f7b4ac
Compare
Choose a tag to compare
v0.0.3-SNAPSHOT Pre-release
Pre-release

Fixes

  • Modules are actually published as JARs now

v0.0.2-SNAPSHOT

21 Feb 00:25
cf640a2
Compare
Choose a tag to compare
v0.0.2-SNAPSHOT Pre-release
Pre-release

Additions

  • [remi-core] Added a new interface method to StorageTrailer: StorageTrailer#upload by @auguwu
  • [remi-support-fs] Added ./ and ~/ support for file paths by @auguwu

Full Changelog: v0.0.1-SNAPSHOT...v0.0.2-SNAPSHOT

Installation

Gradle

Kotlin DSL

repositories {
    // If you're using the Noel Gradle Utils package, you can use the
    // `noelware` extension
    maven {
        url = uri("https://maven.noelware.org/snapshots")
    }
}

dependencies {
    // If you're using the Noel Gradle Utils package, you can use
    // the `noelware` extension to automatically prefix `org.noelware.<module>`
    // in the dependency declaration
    implementation("org.noelware.remi:remi-<module_name>:<version>")
}

Groovy DSL

repositories {
    maven {
        url "https://maven.noelware.org/snapshots"
    }
}

dependencies {
    implementation "org.noelware.remi:remi-<module_name>:<version>"
}

Maven

Declare the Noelware Snapshots Maven repository under the <repositories> chain:

<repositories>
    <repository>
        <id>noelware-maven</id>
        <url>https://maven.noelware.org/snapshots</url>
    </repository>
</repositories>

Now declare the dependency you want under the <dependencies> chain:

<dependencies>
    <dependency>
        <groupId>org.noelware.remi</groupId>
        <artifactId>remi-{{NAME}}</artifactId>
        <version>{{VERSION}}</version>
        <type>pom</type>
    </dependency>
</dependencies>

v0.0.1-SNAPSHOT

20 Feb 16:57
e0a4e20
Compare
Choose a tag to compare
v0.0.1-SNAPSHOT Pre-release
Pre-release

This is a snapshot release of Remi for testing purposes. You can install the library using the maven.noelware.org/snapshots repository:

Gradle

Kotlin DSL

repositories {
    // If you're using the Noel Gradle Utils package, you can use the
    // `noelware` extension
    maven {
        url = uri("https://maven.noelware.org/snapshots")
    }
}

dependencies {
    // If you're using the Noel Gradle Utils package, you can use
    // the `noelware` extension to automatically prefix `org.noelware.<module>`
    // in the dependency declaration
    implementation("org.noelware.remi:remi-<module_name>:<version>")
}

Groovy DSL

repositories {
    maven {
        url "https://maven.noelware.org/snapshots"
    }
}

dependencies {
    implementation "org.noelware.remi:remi-<module_name>:<version>"
}

Maven

Declare the Noelware Snapshots Maven repository under the <repositories> chain:

<repositories>
    <repository>
        <id>noelware-maven</id>
        <url>https://maven.noelware.org/snapshots</url>
    </repository>
</repositories>

Now declare the dependency you want under the <dependencies> chain:

<dependencies>
    <dependency>
        <groupId>org.noelware.remi</groupId>
        <artifactId>remi-{{NAME}}</artifactId>
        <version>{{VERSION}}</version>
        <type>pom</type>
    </dependency>
</dependencies>