Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 45952d5

Browse files
committed
Release 0.1.0
1 parent 6ff55f4 commit 45952d5

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import headers.Headers
1717
import $file.mdoc
1818
import mdoc.MdocModule
1919

20-
val swamVersion = "0.1.0-SNAPSHOT"
20+
val swamVersion = "0.1.0"
2121

2222
val swamLicense = License.`Apache-2.0`
2323

site/content/css/stylesheet.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,13 @@ pre {
44
padding: 0 .4em;
55
font-family: monospace;
66
}
7+
8+
.container ul {
9+
padding-left: 30px!important;
10+
margin-top: 10px!important;
11+
margin-bottom: 15px!important;
12+
}
13+
14+
.container ul li {
15+
list-style-type: disc!important;
16+
}

site/content/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,24 @@ This project defines several modules:
2222

2323
If you want more details, please refer to the examples or [API documentation][api].
2424

25+
## Installation
26+
27+
Artefacts are published on maven, use your favorite build tool to bring it into your project:
28+
29+
- The `core` module: [![Core module on Maven Central][core-image]][core-maven]
30+
- The `runtime` module: [![Runtime module on Maven Central][runtime-image]][runtime-maven]
31+
- The `text` module: [![Text module on Maven Central][text-image]][text-maven]
32+
2533
[webassembly]: https://webassembly.org/
2634
[text-format]: https://webassembly.org/docs/text-format/
2735
[binary-encoding]: https://webassembly.org/docs/binary-encoding/
2836
[non-web-embedding]: https://webassembly.org/docs/non-web/
2937
[api]: /api/
3038
[cats-friendly-logo]: https://typelevel.org/cats/img/cats-badge-tiny.png
3139
[cats]: https://typelevel.org/cats
40+
[core-image]: https://img.shields.io/maven-central/v/org.gnieh/swam-core_2.12.svg
41+
[core-maven]: https://maven-badges.herokuapp.com/maven-central/org.gnieh/swam-core_2.12
42+
[runtime-image]: https://img.shields.io/maven-central/v/org.gnieh/swam-runtime_2.12.svg
43+
[runtime-maven]: https://maven-badges.herokuapp.com/maven-central/org.gnieh/swam-runtime_2.12
44+
[text-image]: https://img.shields.io/maven-central/v/org.gnieh/swam-text_2.12.svg
45+
[text-maven]: https://maven-badges.herokuapp.com/maven-central/org.gnieh/swam-text_2.12

0 commit comments

Comments
 (0)