diff --git a/README.md b/README.md index 5f0af59..4ecf4f7 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ cacca.run(0, {"action": "Hello, Toilet!"}) ``` ## Resources +- [Documentation](https://cacca.airscript.it): Project documentation. - [Flaticon](https://flaticon.com): Collection of assets. ## Contributing diff --git a/SECURITY.md b/SECURITY.md index 93bd8c3..3bba0c9 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -3,7 +3,7 @@ ## Supported Versions | Version | Supported | | ------- | ------------------ | -| 0.1.x | :white_check_mark: | +| 1.0.x | :white_check_mark: | ## Reporting Vulnerability To report a vulnerability, open an [issue](https://github.com/airscripts/cacca/issues/new/choose). diff --git a/VERSION b/VERSION index 6c6aa7c..afaf360 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 \ No newline at end of file +1.0.0 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index bd80c85..1299cd0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cacca", - "version": "0.1.0", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cacca", - "version": "0.1.0", + "version": "1.0.0", "license": "MIT", "bin": { "cacca": "dist/cacca" diff --git a/package.json b/package.json index c83c917..7ca6506 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "cacca", - "version": "0.1.0", - "description": "A cumulative hierarchy framework, easy as shit.", + "version": "1.0.0", + "description": "A workflow framework, easy as shit.", "main": "index.js", "directories": { "test": "tests" @@ -17,7 +17,7 @@ "url": "git+https://github.com/airscripts/cacca.git" }, "bin": { - "cacca": "./dist/cacca" + "cacca": "./dist/node" }, "keywords": [ "cacca", diff --git a/pdm.lock b/pdm.lock index 0620883..dce21cc 100644 --- a/pdm.lock +++ b/pdm.lock @@ -3,9 +3,8 @@ [metadata] groups = ["default", "dev"] -cross_platform = true -static_urls = false -lock_version = "4.3" +strategy = ["cross_platform"] +lock_version = "4.4" content_hash = "sha256:52e00d237e4481608b11d09260ca21ab669c3bee25a43ebeb5dd8e88901f9361" [[package]] diff --git a/pyproject.toml b/pyproject.toml index f72d6ba..d91b3b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "cacca" -version = "0.1.1" -description = "A cumulative hierarchy framework, easy as shit." +version = "1.0.0" +description = "A workflow framework, easy as shit." authors = [ {name = "Airscript", email = "francesco@airscript.it"}, ] diff --git a/scripts/build.sh b/scripts/build.sh index fc0ccb9..f811844 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -2,6 +2,7 @@ set -e echo "[1/2] Building..." pdm run pyinstaller -n cacca -F src/cacca/cli.py +pdm run pyinstaller -n node -F src/cacca/node.py echo "[2/2] Build complete!" exit 0 \ No newline at end of file diff --git a/src/cacca/node.py b/src/cacca/node.py new file mode 100644 index 0000000..930d09e --- /dev/null +++ b/src/cacca/node.py @@ -0,0 +1 @@ +print("💩")