From 73a12eb1c04c51f50a6155a55c7240c4eccfb628 Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Sun, 31 Dec 2023 22:17:24 -0500 Subject: [PATCH] release v0.13.0 --- .github/workflows/publish.yml | 8 ++++---- Cargo.toml | 2 +- docs/changelog.md | 2 ++ mkdocs.yml | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f322e98..489bcda 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,10 +21,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Publish to crates.io - env: - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} - run: cargo publish + # - name: Publish to crates.io + # env: + # CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + # run: cargo publish - name: Create source archives run: |- diff --git a/Cargo.toml b/Cargo.toml index 7aebd0c..bb6a874 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyapp" -version = "0.12.0" +version = "0.13.0" description = "Runtime installer for Python applications" repository = "https://github.com/ofek/pyapp" documentation = "https://ofek.dev/pyapp/" diff --git a/docs/changelog.md b/docs/changelog.md index db19f74..9c20b2e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased +## 0.13.0 - 2023-12-31 + ***Added:*** - Allow for forwarding of unknown management commands e.g. if apps have their own `self` commands diff --git a/mkdocs.yml b/mkdocs.yml index 537a549..6cc5380 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,5 +1,5 @@ site_name: PyApp -site_description: Build self-bootstrapped Python applications +site_description: Runtime installer for Python applications site_author: Ofek Lev site_url: https://ofek.dev/pyapp/ repo_name: ofek/pyapp