Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
luismedel committed Nov 17, 2024
1 parent e15a306 commit 8ae8d3a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .bluish/bluish.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

var:
project_version: "0.7.4.1"
project_version: "0.7.5"
python_version: "3.12"

jobs:
Expand Down Expand Up @@ -47,6 +47,12 @@ jobs:
input_file: ./templates/pyproject.toml.template
output_file: ./pyproject.toml

- name: Update metadata in setup.cfg
uses: core/expand-template
with:
input_file: ./templates/setup.cfg.template
output_file: ./setup.cfg

- name: Update metadata in src/bluish/__main__.py
uses: core/expand-template
with:
Expand Down
14 changes: 14 additions & 0 deletions templates/setup.cfg.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[metadata]
name = bluish
version = ${{ var.project_version }}
author = Luis Medel
author_email = [email protected]
description = A CI/CD tool
long_description = file: README.md
license = MIT-Clause
classifiers =
Intended Audience :: Developers
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Typing :: Typed

0 comments on commit 8ae8d3a

Please sign in to comment.