Skip to content

Commit

Permalink
Merge branch 'release/0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 1, 2022
2 parents a1b09cd + b03be63 commit d2b15c6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/GHA.actions-handy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ on:
env:
DAY_OF_WEEK: Friday


jobs:
just-macos-things:
runs-on: macos-latest
Expand Down Expand Up @@ -67,10 +66,13 @@ jobs:
- name: use GITHUB_ENV for runtime variable assignment
run: |
echo "DAYS_PLUS_11=$(date -d "$(date) + 11 days" +%b%d)" >> $GITHUB_ENV
printf "DAYS_PLUS_11: %s\n" "$DAYS_PLUS_11"
echo 'EMPTY! Notice that the shell assignment not availabe until the next step'
- name: "Here is shell env variable in next step"
run: |
echo "Working variable from GITHUB_ENV: $DAYS_PLUS_11"
echo "Working variable from GITHUB_ENV: DAYS_PLUS_11"
printf "DAYS_PLUS_11: %s\n" "$DAYS_PLUS_11"
- name: workflow_dispatch inputs usage and context
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/poetry.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:

- run: python --version

# TODO: add cacheing for poetry maybe or not
- name: Install poetry with pipx and python version
run: pipx install --python $(which python) poetry
- run: poetry install
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.2.1'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "desertislandutils"
version = "0.2.0"
version = "0.2.1"
description = "A collection of personal convenience utilities"
authors = ["mahiki <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_desertislandutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

def test_version():
# I don't know why I'm testing this but at least the import worked in pytest
assert __version__ == '0.2.0'
assert __version__ == '0.2.1'

0 comments on commit d2b15c6

Please sign in to comment.