Skip to content

Commit

Permalink
Merge pull request #653 from Kipper-Lang/dev-next
Browse files Browse the repository at this point in the history
v0.11.0-rc.0
  • Loading branch information
Luna-Klatzer authored Jul 9, 2024
2 parents 9ed43e1 + a9ad194 commit e3e8f83
Show file tree
Hide file tree
Showing 15 changed files with 23 additions and 23 deletions.
8 changes: 4 additions & 4 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ authors:
identifiers:
- type: url
value: >-
https://github.com/Kipper-Lang/Kipper/releases/tag/v0.11.0-beta.0
description: The GitHub release URL of tag 0.11.0-beta.0
https://github.com/Kipper-Lang/Kipper/releases/tag/v0.11.0-rc.0
description: The GitHub release URL of tag 0.11.0-rc.0
repository-code: 'https://github.com/Kipper-Lang/Kipper/'
url: 'https://kipper-lang.org'
abstract: >-
Expand All @@ -31,6 +31,6 @@ keywords:
- oop-programming
- type-safety
license: GPL-3.0-or-later
license-url: 'https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-beta.0/LICENSE'
version: 0.11.0-beta.0
license-url: 'https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-rc.0/LICENSE'
version: 0.11.0-rc.0
date-released: '2024-07-01'
12 changes: 6 additions & 6 deletions kipper/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $ npm install -g @kipper/cli
$ kipper COMMAND
running command...
$ kipper (--version)
@kipper/cli/0.11.0-beta.0 linux-x64 node-v18.18.2
@kipper/cli/0.11.0-rc.0 linux-x64 node-v18.18.2
$ kipper --help [COMMAND]
USAGE
$ kipper COMMAND
Expand Down Expand Up @@ -111,7 +111,7 @@ EXAMPLES
kipper compile -t ts ./path/to/file.kip -o build/ -e utf16le --warnings --log-timestamp
```

_See code: [src/commands/compile.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-beta.0/kipper/cli/src/commands/compile.ts)_
_See code: [src/commands/compile.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-rc.0/kipper/cli/src/commands/compile.ts)_

## `kipper help [COMMAND]`

Expand All @@ -128,7 +128,7 @@ OPTIONS
--all see all commands in CLI
```

_See code: [src/commands/help.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-beta.0/kipper/cli/src/commands/help.ts)_
_See code: [src/commands/help.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-rc.0/kipper/cli/src/commands/help.ts)_

## `kipper new [LOCATION]`

Expand All @@ -145,7 +145,7 @@ OPTIONS
-d, --default Use the default settings for the new project. Skips the setup wizard.
```

_See code: [src/commands/new.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-beta.0/kipper/cli/src/commands/new.ts)_
_See code: [src/commands/new.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-rc.0/kipper/cli/src/commands/new.ts)_

## `kipper run [FILE]`

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

_See code: [src/commands/run.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-beta.0/kipper/cli/src/commands/run.ts)_
_See code: [src/commands/run.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-rc.0/kipper/cli/src/commands/run.ts)_

## `kipper version`

Expand All @@ -201,7 +201,7 @@ USAGE
$ kipper version
```

_See code: [src/commands/version.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-beta.0/kipper/cli/src/commands/version.ts)_
_See code: [src/commands/version.ts](https://github.com/Kipper-Lang/Kipper/blob/v0.11.0-rc.0/kipper/cli/src/commands/version.ts)_
<!-- commandsstop -->

## Contributing to Kipper
Expand Down
2 changes: 1 addition & 1 deletion kipper/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kipper/cli",
"description": "The Kipper Command Line Interface (CLI).",
"version": "0.11.0-beta.0",
"version": "0.11.0-rc.0",
"author": "Luna-Klatzer @Luna-Klatzer",
"bin": {
"kipper": "./bin/run"
Expand Down
2 changes: 1 addition & 1 deletion kipper/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export * from "./output/compile";
// eslint-disable-next-line no-unused-vars
export const name = "@kipper/cli";
// eslint-disable-next-line no-unused-vars
export const version = "0.11.0-beta.0";
export const version = "0.11.0-rc.0";
// eslint-disable-next-line no-unused-vars
export const author = "Luna Klatzer";
// eslint-disable-next-line no-unused-vars
Expand Down
2 changes: 1 addition & 1 deletion kipper/config/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kipper/config",
"description": "The config file support package adding support for kip-config.json/kipper-config.json 🦊",
"version": "0.11.0-beta.0",
"version": "0.11.0-rc.0",
"author": "Luna-Klatzer @Luna-Klatzer",
"dependencies": {
"is-plain-object": "5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion kipper/config/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export * from "./evaluated-kipper-config-file";
// eslint-disable-next-line no-unused-vars
export const name = "@kipper/config";
// eslint-disable-next-line no-unused-vars
export const version = "0.11.0-beta.0";
export const version = "0.11.0-rc.0";
// eslint-disable-next-line no-unused-vars
export const author = "Luna Klatzer";
// eslint-disable-next-line no-unused-vars
Expand Down
2 changes: 1 addition & 1 deletion kipper/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kipper/core",
"description": "The core implementation of the Kipper compiler 🦊",
"version": "0.11.0-beta.0",
"version": "0.11.0-rc.0",
"author": "Luna-Klatzer @Luna-Klatzer",
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
Expand Down
2 changes: 1 addition & 1 deletion kipper/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export * as utils from "./tools";
// eslint-disable-next-line no-unused-vars
export const name = "@kipper/core";
// eslint-disable-next-line no-unused-vars
export const version = "0.11.0-beta.0";
export const version = "0.11.0-rc.0";
// eslint-disable-next-line no-unused-vars
export const author = "Luna Klatzer";
// eslint-disable-next-line no-unused-vars
Expand Down
2 changes: 1 addition & 1 deletion kipper/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export * from "@kipper/target-ts";
// eslint-disable-next-line no-unused-vars
export const name = "kipper";
// eslint-disable-next-line no-unused-vars
export const version = "0.11.0-beta.0";
export const version = "0.11.0-rc.0";
// eslint-disable-next-line no-unused-vars
export const author = "Luna Klatzer";
// eslint-disable-next-line no-unused-vars
Expand Down
2 changes: 1 addition & 1 deletion kipper/target-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kipper/target-js",
"description": "The JavaScript target for the Kipper compiler 🦊",
"version": "0.11.0-beta.0",
"version": "0.11.0-rc.0",
"author": "Luna-Klatzer @Luna-Klatzer",
"dependencies": {
"@kipper/core": "workspace:~",
Expand Down
2 changes: 1 addition & 1 deletion kipper/target-js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export * from "./tools";
// eslint-disable-next-line no-unused-vars
export const name = "@kipper/target-js";
// eslint-disable-next-line no-unused-vars
export const version = "0.11.0-beta.0";
export const version = "0.11.0-rc.0";
// eslint-disable-next-line no-unused-vars
export const author = "Luna Klatzer";
// eslint-disable-next-line no-unused-vars
Expand Down
2 changes: 1 addition & 1 deletion kipper/target-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kipper/target-ts",
"description": "The TypeScript target for the Kipper compiler 🦊",
"version": "0.11.0-beta.0",
"version": "0.11.0-rc.0",
"author": "Luna-Klatzer @Luna-Klatzer",
"dependencies": {
"@kipper/target-js": "workspace:~",
Expand Down
2 changes: 1 addition & 1 deletion kipper/target-ts/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export * from "./tools";
// eslint-disable-next-line no-unused-vars
export const name = "@kipper/target-ts";
// eslint-disable-next-line no-unused-vars
export const version = "0.11.0-beta.0";
export const version = "0.11.0-rc.0";
// eslint-disable-next-line no-unused-vars
export const author = "Luna Klatzer";
// eslint-disable-next-line no-unused-vars
Expand Down
2 changes: 1 addition & 1 deletion kipper/web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kipper/web",
"description": "The standalone web-module for the Kipper compiler 🦊",
"version": "0.11.0-beta.0",
"version": "0.11.0-rc.0",
"author": "Luna-Klatzer @Luna-Klatzer",
"devDependencies": {
"@kipper/target-js": "workspace:~",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kipper",
"description": "The Kipper programming language and compiler 🦊",
"version": "0.11.0-beta.0",
"version": "0.11.0-rc.0",
"author": "Luna-Klatzer @Luna-Klatzer",
"dependencies": {
"@kipper/cli": "workspace:~",
Expand Down

0 comments on commit e3e8f83

Please sign in to comment.