Skip to content

Commit

Permalink
Update to 0.3-SNAPSHOT after release. Update README to reflect the li…
Browse files Browse the repository at this point in the history
…brary has been released. Update artifacts to be prefixed with `maryk-`
  • Loading branch information
jurmous committed Dec 10, 2023
1 parent 2a03aab commit a942015
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
[![Download](https://img.shields.io/maven-central/v/io.maryk/maryk-core)](https://central.sonatype.com/artifact/io.maryk/maryk-core)

# Maryk: Cross-Platform Data Modeling and Storage

Maryk is a Kotlin Multiplatform project that allows developers to define, validate,
Expand Down Expand Up @@ -58,8 +61,6 @@ To get started with Maryk, follow these steps:

1. Add Maryk's core dependency to your Kotlin Multiplatform project Gradle configuration:

**Note**: At this moment Maryk is not yet published to Maven Central. For now you have to publish it locally and add it to your project.

```gradle
implementation "io.maryk:maryk-core:$version"
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package maryk.conventions

import org.gradle.api.plugins.JavaBasePlugin.DOCUMENTATION_GROUP
import org.gradle.kotlin.dsl.*

/**
* Conventions for publishing.
Expand Down Expand Up @@ -43,6 +42,7 @@ val sonatypeReleaseUrl = isReleaseVersion.map { isRelease ->
publishing {
publications.withType<MavenPublication>().configureEach {
pom {
artifactId = "maryk-${artifactId}"
name.convention("Maryk")
description.convention("Maryk is a Kotlin Multiplatform library which helps you to store, query and send data in a structured way over multiple platforms. The data store stores any value with a version, so it is possible to request only the changed data or live listen for updates.")
url.convention("https://github.com/marykdb/maryk")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ plugins {
}

group = "io.maryk"
version = "0.2-SNAPSHOT"
version = "0.3-SNAPSHOT"

0 comments on commit a942015

Please sign in to comment.