Skip to content

Commit f20d9e0

Browse files
authored
Version 1.1.0 (#12)
1 parent fdf3baf commit f20d9e0

File tree

25 files changed

+48
-13
lines changed

25 files changed

+48
-13
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
2-
# Renaming ? Change the README badge.
32
name: Build
43
on:
54
push:
@@ -17,6 +16,7 @@ jobs:
1716
java-version: 17
1817
distribution: temurin
1918
cache: gradle
19+
- uses: gradle/actions/wrapper-validation@v4
2020
- name: Check local deployment
2121
run: ./gradlew build deployLocal
2222
CHECK_TESTS:

.github/workflows/snapshot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
2-
# Renaming ? Change the README badge.
32
name: Snapshot
43
on:
54
push:

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build Status](https://github.com/deepmedia/Knee/actions/workflows/build.yml/badge.svg?event=push)](https://github.com/deepmedia/Knee/actions)
22
[![Release](https://img.shields.io/github/release/deepmedia/Knee.svg)](https://github.com/deepmedia/Knee/releases)
3-
[![Issues](https://img.shields.io/github/issues-raw/deepmedia/MavenDeployer.svg)](https://github.com/deepmedia/Knee/issues)
3+
[![Issues](https://img.shields.io/github/issues-raw/deepmedia/Knee.svg)](https://github.com/deepmedia/Knee/issues)
44

55
![Project logo](assets/logo_256.png)
66

@@ -23,7 +23,7 @@ pluginManagement {
2323

2424
// build.gradle.kts
2525
plugins {
26-
id("io.deepmedia.tools.knee") version "1.0.0"
26+
id("io.deepmedia.tools.knee") version "1.1.0"
2727
}
2828
```
2929

docs/concepts.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Concepts
3+
description: Discover Knee's main concepts - the motivation behind the plugin and notes about its architecture and design.
34
---
45

56
# Concepts

docs/configure.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
title: Configure
3+
description: >
4+
Check out all available options to configure Knee Gradle Plugin, like verbosity, output directories and automatic
5+
target connection in Kotlin Multiplatform projects.
36
---
47

58
# Configuration

docs/features/builtin-types.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
title: Built-in types
3+
description: >
4+
Understand how Knee compiler plugin can serialize several built-in types from the Kotlin standard library and let
5+
you pass them from Kotlin Native to the JVM and vice versa.
36
---
47

58
# Built-in types

docs/features/callables.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
title: Callables
3+
description: >
4+
Learn about the concept of callables in Knee - a set of function and properties that are explicitly marked
5+
to be serializable and represent the links between the Native and JVM part of your Kotlin project.
36
---
47

58
# Callables

docs/features/classes.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
title: Classes
3+
description: >
4+
Understand how Knee compiler plugin can serialize declared classes and let you pass them from Kotlin Native
5+
to the JVM and vice versa, including support for externally defined classes.
36
---
47

58
# Classes

docs/features/enums.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
title: Enums
3+
description: >
4+
Understand how Knee compiler plugin can serialize Kotlin enumerations and let you pass them from Kotlin Native
5+
to the JVM and vice versa, including support for externally defined enums.
36
---
47

58
# Enums

0 commit comments

Comments
 (0)