From 956882c00c58656e1b3a54752337c6d523a5021a Mon Sep 17 00:00:00 2001 From: Ryan Bottriell Date: Mon, 22 Mar 2021 14:10:24 -0700 Subject: [PATCH] Update release notes --- .spdev.yaml | 12 ++++-------- Cargo.lock | 1 + setup.py | 2 +- spk.spec | 2 +- spk/__init__.py | 2 +- 5 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.spdev.yaml b/.spdev.yaml index 6d5677cb32..3e78cb7b11 100644 --- a/.spdev.yaml +++ b/.spdev.yaml @@ -1,12 +1,8 @@ -version: 0.24.0 +version: 0.25.0 release_notes: | - * Fix bug where solver was not behaving deterministically - * This was the case in previous versions, but was not caught in the rust transition - * Update view/info command to respect the --verbose flag and print more information - about installed packages when provided - * Update build and make_binary commands to take a -e/--env flag, which will put you - into the new packages environment immediately after building the first variant - * Update 'collecting' messages to not be zero-based, and actually reach the end + * Update to latest spfs for improved logging and bugfixes + * Update logging to use stderr instead of stdio, making it + much easier to interact with processes launched through spk toolchain: - kind: Shell diff --git a/Cargo.lock b/Cargo.lock index cf19d1fada..4d61b8f910 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1992,6 +1992,7 @@ dependencies = [ [[package]] name = "spfs" version = "0.23.0" +source = "git+https://gitlab.spimageworks.com/spi/dev/dev-ops/spfs?tag=v0.23.0#88645e6c3e8a3c4cf9f942c12dad2b00bf01b257" dependencies = [ "chrono", "colored", diff --git a/setup.py b/setup.py index 1f6171af97..845c151c74 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name="spk", description="The 'S' Package System: Convenience, clarity and speed.", - version="0.24.0", + version="0.25.0", packages=find_packages(), install_requires=install_requires, package_data={"": ["Pipfile"]}, diff --git a/spk.spec b/spk.spec index ed59822f89..8a4d98f9a4 100644 --- a/spk.spec +++ b/spk.spec @@ -1,5 +1,5 @@ Name: spk -Version: 0.24.0 +Version: 0.25.0 Release: 1 Summary: Package manager for SPFS. License: NONE diff --git a/spk/__init__.py b/spk/__init__.py index 68d9e1a926..a4aaff34ae 100644 --- a/spk/__init__.py +++ b/spk/__init__.py @@ -1,6 +1,6 @@ """SPack - an SpFS Package Manager""" -__version__ = "0.24.0" +__version__ = "0.25.0" from . import api, storage, solve, build, exec, test from ._global import load_spec, save_spec