Skip to content

Commit 7b460d9

Browse files
committed
Release 0.12.1
1 parent 468b73f commit 7b460d9

File tree

8 files changed

+21
-26
lines changed

8 files changed

+21
-26
lines changed

kipper/cli/README.md

+14-19
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ and the [Kipper website](https://kipper-lang.org)._
2222
[![DOI](https://zenodo.org/badge/411260595.svg)](https://zenodo.org/badge/latestdoi/411260595)
2323

2424
<!-- toc -->
25-
26-
- [Kipper CLI - `@kipper/cli` 🦊✨](#kipper-cli---kippercli-)
27-
- [Usage](#usage)
28-
- [Commands](#commands)
25+
* [Kipper CLI - `@kipper/cli` 🦊✨](#kipper-cli---kippercli-)
26+
* [Usage](#usage)
27+
* [Commands](#commands)
2928
<!-- tocstop -->
3029

3130
## General Information
@@ -40,30 +39,27 @@ and the [Kipper website](https://kipper-lang.org)._
4039
# Usage
4140

4241
<!-- usage -->
43-
4442
```sh-session
4543
$ npm install -g @kipper/cli
4644
$ kipper COMMAND
4745
running command...
4846
$ kipper (--version)
49-
@kipper/cli/0.12.0 linux-x64 node-v20.15.0
47+
@kipper/cli/0.12.1 linux-x64 node-v23.4.0
5048
$ kipper --help [COMMAND]
5149
USAGE
5250
$ kipper COMMAND
5351
...
5452
```
55-
5653
<!-- usagestop -->
5754

5855
# Commands
5956

6057
<!-- commands -->
61-
62-
- [`kipper compile [FILE]`](#kipper-compile-file)
63-
- [`kipper help [COMMAND]`](#kipper-help-command)
64-
- [`kipper new [LOCATION]`](#kipper-new-location)
65-
- [`kipper run [FILE]`](#kipper-run-file)
66-
- [`kipper version`](#kipper-version)
58+
* [`kipper compile [FILE]`](#kipper-compile-file)
59+
* [`kipper help [COMMAND]`](#kipper-help-command)
60+
* [`kipper new [LOCATION]`](#kipper-new-location)
61+
* [`kipper run [FILE]`](#kipper-run-file)
62+
* [`kipper version`](#kipper-version)
6763

6864
## `kipper compile [FILE]`
6965

@@ -115,7 +111,7 @@ EXAMPLES
115111
kipper compile -t ts ./path/to/file.kip -o build/ -e utf16le --warnings --log-timestamp
116112
```
117113

118-
_See code: [src/commands/compile.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.0/kipper/cli/src/commands/compile.ts)_
114+
_See code: [src/commands/compile.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.1/kipper/cli/src/commands/compile.ts)_
119115

120116
## `kipper help [COMMAND]`
121117

@@ -132,7 +128,7 @@ OPTIONS
132128
--all see all commands in CLI
133129
```
134130

135-
_See code: [src/commands/help.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.0/kipper/cli/src/commands/help.ts)_
131+
_See code: [src/commands/help.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.1/kipper/cli/src/commands/help.ts)_
136132

137133
## `kipper new [LOCATION]`
138134

@@ -149,7 +145,7 @@ OPTIONS
149145
-d, --default Use the default settings for the new project. Skips the setup wizard.
150146
```
151147

152-
_See code: [src/commands/new.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.0/kipper/cli/src/commands/new.ts)_
148+
_See code: [src/commands/new.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.1/kipper/cli/src/commands/new.ts)_
153149

154150
## `kipper run [FILE]`
155151

@@ -194,7 +190,7 @@ EXAMPLES
194190
kipper run -t ts -o build/ -e utf8 -s "print('Hello, World!');" --warnings --log-timestamp
195191
```
196192

197-
_See code: [src/commands/run.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.0/kipper/cli/src/commands/run.ts)_
193+
_See code: [src/commands/run.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.1/kipper/cli/src/commands/run.ts)_
198194

199195
## `kipper version`
200196

@@ -205,8 +201,7 @@ USAGE
205201
$ kipper version
206202
```
207203

208-
_See code: [src/commands/version.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.0/kipper/cli/src/commands/version.ts)_
209-
204+
_See code: [src/commands/version.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.12.1/kipper/cli/src/commands/version.ts)_
210205
<!-- commandsstop -->
211206

212207
## Contributing to Kipper

kipper/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kipper/cli",
33
"description": "The Kipper Command Line Interface (CLI).",
4-
"version": "0.12.0",
4+
"version": "0.12.1",
55
"author": "Luna-Klatzer @Luna-Klatzer",
66
"bin": {
77
"kipper": "./bin/run",

kipper/config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kipper/config",
33
"description": "The config file support package adding support for kip-config.json/kipper-config.json 🦊",
4-
"version": "0.12.0",
4+
"version": "0.12.1",
55
"author": "Luna-Klatzer @Luna-Klatzer",
66
"dependencies": {
77
"is-plain-object": "5.0.0",

kipper/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kipper/core",
33
"description": "The core implementation of the Kipper compiler 🦊",
4-
"version": "0.12.0",
4+
"version": "0.12.1",
55
"author": "Luna-Klatzer @Luna-Klatzer",
66
"dependencies": {
77
"antlr4ts": "^0.5.0-alpha.4",

kipper/target-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kipper/target-js",
33
"description": "The JavaScript target for the Kipper compiler 🦊",
4-
"version": "0.12.0",
4+
"version": "0.12.1",
55
"author": "Luna-Klatzer @Luna-Klatzer",
66
"dependencies": {
77
"@kipper/core": "workspace:~",

kipper/target-ts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kipper/target-ts",
33
"description": "The TypeScript target for the Kipper compiler 🦊",
4-
"version": "0.12.0",
4+
"version": "0.12.1",
55
"author": "Luna-Klatzer @Luna-Klatzer",
66
"dependencies": {
77
"@kipper/target-js": "workspace:~",

kipper/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kipper/web",
33
"description": "The standalone web-module for the Kipper compiler 🦊",
4-
"version": "0.12.0",
4+
"version": "0.12.1",
55
"author": "Luna-Klatzer @Luna-Klatzer",
66
"devDependencies": {
77
"@kipper/target-js": "workspace:~",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kipper",
33
"description": "The Kipper programming language and compiler 🦊",
4-
"version": "0.12.0",
4+
"version": "0.12.1",
55
"author": "Luna-Klatzer @Luna-Klatzer",
66
"dependencies": {
77
"@kipper/cli": "workspace:~",

0 commit comments

Comments
 (0)