Skip to content

release 0.0.7 #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## 0.0.7

### Fixed

- Invalid 'buildx bake' configuration file generated due to architecture not being a list anymore. ([#13])
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# image-tools v0.0.6
# image-tools v0.0.7

Commandline tools to manage Stackable container images available at https://github.com/stackabletech/docker-images

Expand Down
17 changes: 6 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
[project]
name = "image-tools-stackabletech"
version = "0.0.6"
authors = [
{ name = "Razvan Mihai", email = "razvan.mihai@stackable.tech" }
]
version = "0.0.7"
authors = [{ name = "Razvan Mihai", email = "razvan.mihai@stackable.tech" }]
description = "Image tools for the Stackable Data Platform."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Jinja2>=3.1.2",
"PyYAML>=6.0"
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["Jinja2>=3.1.2", "PyYAML>=6.0"]
[project.optional-dependencies]
lint = ['ruff==0.0.275', 'mypy==1.4.0']

Expand Down
Loading