BierDav / Kotlinmailer

A simple, modern and coroutine based Kotlin Email API for clientside projects
https://bierdav.github.io/Kotlinmailer/
Apache License 2.0
8 stars 0 forks source link

Impossible to add the version 1.0.0 #4

Closed freeElf7 closed 5 days ago

freeElf7 commented 3 weeks ago

Hello

In my kotlin project, I use this repo to send some mails. I have no problems with version 0.3.0 with implementation("at.quickme.kotlinmailer:kotlinmailer-core:0.3.0") However, it is impossible to upgrade to version 1.0.0. implementation("at.quickme.kotlinmailer:kotlinmailer-core:1.0.0") The version is unknown. On the maven website, version 1.0.0 is indeed unknown (https://mvnrepository.com/artifact/at.quickme.kotlinmailer/kotlinmailer-core).

I tried adding directly via the github repo : setting.gradle.kts

sourceControl {
    gitRepository(uri("https://github.com/BierDav/Kotlinmailer.git")) {
        producesModule("at.quickme.kotlinmailer:kotlinmailer-core")
        producesModule("at.quickme.kotlinmailer:kotlinmailer-html")
    }
}

and I have the error "Git repository at https://github.com/BierDav/Kotlinmailer.git did not contain a project publishing the specified dependency.".

Isn't there a problem with version 1.0.0?

BierDav commented 2 weeks ago

Thanks for reporting. I will try to fix, that. The repository is only available in mavenCentral so no need for custom configuration. You should be fine using 0.3 till now, because nothing substantial has really changed since then.

BierDav commented 5 days ago

Version 1.0.1 is now available 🎉

Note the new packagenames at.quickme.kotlinmailer:core not at.quickme.kotlinmailer:kotlinmailer-core as before