From 3b2991be846819622e0554257863b20f9e6477d1 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Wed, 4 Feb 2026 11:53:04 +0000 Subject: [PATCH] 0.6.12 --- .github/workflows/python.yml | 2 ++ CHANGELOG.md | 8 ++++++++ cmdapp/Cargo.toml | 2 +- cmdapp/pyproject.toml | 4 ++-- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 8caa22b..365b14d 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -158,6 +158,8 @@ jobs: release: name: Release runs-on: ubuntu-latest + # Specifying a GitHub environment is optional, but strongly encouraged + environment: python if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} needs: [linux, musllinux, windows, macos, sdist] permissions: diff --git a/CHANGELOG.md b/CHANGELOG.md index 71d69f6..097b402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 0.6.12 - 2026-02-04 + +* Python Binding + +## 0.6.5 - 2025-10-17 + +* Update `fastrand` to `2.3` + ## 0.6.4 - 2024-03-29 * Update `visioncortex` version to `0.8.8` diff --git a/cmdapp/Cargo.toml b/cmdapp/Cargo.toml index 4f0f3eb..d6ac291 100644 --- a/cmdapp/Cargo.toml +++ b/cmdapp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vtracer" -version = "0.6.6" +version = "0.6.12" authors = ["Chris Tsang "] edition = "2021" description = "A cmd app to convert images into vector graphics." diff --git a/cmdapp/pyproject.toml b/cmdapp/pyproject.toml index e503a28..bf72f70 100644 --- a/cmdapp/pyproject.toml +++ b/cmdapp/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vtracer" -version = "0.6.11" +version = "0.6.12" description = "Python bindings for the Rust Vtracer raster-to-vector library" authors = [ { name = "Chris Tsang", email = "chris.2y3@outlook.com" } ] readme = "vtracer/README.md" @@ -25,4 +25,4 @@ build-backend = "maturin" [tool.maturin] features = ["pyo3/extension-module", "python-binding"] compatibility = "manylinux2014" -sdist-include = ["LICENSE-MIT", "vtracer/README.md"] \ No newline at end of file +sdist-include = ["LICENSE-MIT", "LICENSE-APACHE", "vtracer/README.md"] \ No newline at end of file