From 0dc93154e0cb9c27d9f255223c5b89c71259ea76 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: May 23 2024 14:07:23 +0000 Subject: Release 0.1.16 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index e49e2ef..d5f5214 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## Release 0.1.16 + +This release addresses an edge case in `BuildRequires` generation for cargo +workspaces which could previously lead to crashes for path- or git-based +dependencies in some circumstances. + ## Release 0.1.15 This release contains a follow-up fix for the changes that were introduced diff --git a/cargo2rpm/__init__.py b/cargo2rpm/__init__.py index 4cda164..a518910 100644 --- a/cargo2rpm/__init__.py +++ b/cargo2rpm/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = "0.1.15" +__version__ = "0.1.16" # if the "CARGO" environment variable is not defined, fall back to "cargo" if _cargo := os.environ.get("CARGO"):