This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
Releases: Noelware/remi
Releases · Noelware/remi
v0.1.0-beta
🎉 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
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
Fixes
- Modules are actually published as JARs now
v0.0.2-SNAPSHOT
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
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>