Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
milis92 committed Jul 22, 2022
2 parents 314c75d + 3d745c9 commit 8ff4219
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 21 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Change Log

---

<!---
## Version #.#.# (Release date)
### General
Expand All @@ -14,7 +15,41 @@ Change Log
### New APIs
[//]: # (List of new apis and features)
### Deprecations
[//]: # (List of apis deprecated with this release)
---
-->

## Version 1.0.0 (22/7/2022)

### General
[//]: # (List of general updates to the library e.g documentation updates, ci updates etc.)

##### Added support for basic Markdown syntax, supporting:
- Texts
- Inline Spans and Text Emphasis(Bold, Italic, CodeSpan)
- Paragraphs
- Headers(Both ATX and Settext)
- Horizontal Rules
- Lists (Ordered and Unordered)
- Blockquotes
- Code Blocks
- Links (Both Images and Links)

### BugFixes
[//]: # (List of bugfixes for this release - ideally with references to the tracking issues)

- No bugfixes

### New APIs
[//]: # (List of new apis and features)

- Everything is a new api ;)

### Deprecations
[//]: # (List of apis deprecated with this release)

- No deprecations

---
2 changes: 2 additions & 0 deletions basic/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
POM_ARTIFACT_ID=basic
POM_NAME=Kotlin Basic Markdown DSL
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {

allprojects {
// Fail fast if there is no group or properties in gradle.properties
group = project.property("GROUP_ID")!!
version = "${project.property("VERSION")!!} ${System.getenv("VERSION_SUFFIX") ?: ""}"
group = project.property("GROUP")!!
version = "${project.property("VERSION_NAME")!!}${System.getenv("VERSION_SUFFIX") ?: ""}"
}

val detektFormatting = libs.detekt.formatting
Expand Down
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/kotlin-common-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

configure<KotlinProjectExtension> {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(8))
languageVersion.set(JavaLanguageVersion.of(11))
}
}

tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = JavaVersion.VERSION_1_8.toString()
kotlinOptions.jvmTarget = JavaVersion.VERSION_11.toString()
}

tasks.withType<JavaCompile> {
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_1_8.toString()
sourceCompatibility = JavaVersion.VERSION_11.toString()
targetCompatibility = JavaVersion.VERSION_11.toString()
}
29 changes: 14 additions & 15 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,28 @@ org.gradle.jvmargs=-Xmx4096m
org.gradle.unsafe.configuration-cache=true
org.gradle.unsafe.configuration-cache-problems=warn
kotlin.mpp.stability.nowarn=true
kotlin.native.useEmbeddableCompilerJar=true
kotlin.caching.enabled=true
kapt.includeCompileClasspath=false
# Maven
GROUP_ID="com.github.milis92.kotlin_markdown"
VERSION="1.0.0"
GROUP=io.github.milis92.kotlin_markdown
VERSION_NAME=1.0.0

SONATYPE_HOST=DEFAULT
SONATYPE_HOST=S01
RELEASE_SIGNING_ENABLED=true

POM_NAME=""
POM_DESCRIPTION=""
POM_NAME=Kotlin Markdown DSL
POM_DESCRIPTION=A Kotlin DSL for effortless creation of beautiful Markdown pages
POM_INCEPTION_YEAR=2022

POM_URL=""
POM_LICENSE_NAME=""
POM_LICENSE_URL=""
POM_URL=https://github.com/milis92/kotlin_markdown
POM_LICENSE_NAME=The Apache Software License, Version 2.0
POM_LICENSE_URL=https://github.com/milis92/kotlin_markdown/blob/main/LICENSE.txt
POM_LICENSE_DIST=repo

POM_SCM_URL=""
POM_SCM_CONNECTION=""
POM_SCM_DEV_CONNECTION=""
POM_SCM_URL=https://github.com/milis92/kotlin_markdown
POM_SCM_CONNECTION=scm:git:git://github.com/milis92/kotlin_markdown.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/milis92/kotlin_markdown.git

POM_DEVELOPER_ID=""
POM_DEVELOPER_NAME=""
POM_DEVELOPER_URL=""
POM_DEVELOPER_ID=milis92
POM_DEVELOPER_NAME=Ivan Milisavljevic
POM_DEVELOPER_URL=https://github.com/milis92

0 comments on commit 8ff4219

Please sign in to comment.