Skip to content

Commit

Permalink
Update for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rydrman committed Apr 16, 2021
1 parent 3d812e9 commit 9484fd8
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 13 deletions.
9 changes: 3 additions & 6 deletions .spdev.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
version: 0.28.0
version: 0.28.1
release_notes: |
* Improvements to usability of list command
* Do not show repository prefix in interactive mode
* Sort results for easier reading
* Update --local flag to ONLY show local results be default (as opposed to local and remote results)
* Fix bug where --disable-repo flag was ignored in build command
* Update to latest spfs release
* This will fix issues with multiple users not being able to properly share a machine
toolchain:
- kind: Rust
Expand Down
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ extension-module = ["pyo3/extension-module"]
[dependencies]
pyo3 = {version = "0.13.2"}
relative-path = "1.3.2"
spfs = {git = 'https://gitlab.spimageworks.com/spi/dev/dev-ops/spfs', tag = 'v0.26.1'}
spfs = {git = 'https://gitlab.spimageworks.com/spi/dev/dev-ops/spfs', tag = 'v0.27.0'}
tracing = "0.1.25"
tracing-subscriber = "0.2.16"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
setup(
name="spk",
description="The 'S' Package System: Convenience, clarity and speed.",
version="0.28.0",
version="0.28.1",
packages=find_packages(),
entry_points={"console_scripts": ["spk=spk.cli:main"]},
rust_extensions=[
Expand Down
4 changes: 2 additions & 2 deletions spk.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: spk
Version: 0.28.0
Version: 0.28.1
Release: 1
Summary: Package manager for SPFS.
License: NONE
Expand All @@ -15,7 +15,7 @@ BuildRequires: python37-devel
BuildRequires: openssl-devel
BuildRequires: spdev
Requires: rsync
Requires: spfs >= 0.26.1
Requires: spfs >= 0.27.0

%define debug_package %{nil}

Expand Down
2 changes: 1 addition & 1 deletion spk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""SPack - an SpFS Package Manager"""

__version__ = "0.28.0"
__version__ = "0.28.1"

from . import api, storage, solve, build, exec, test
from ._global import load_spec, save_spec
Expand Down

0 comments on commit 9484fd8

Please sign in to comment.