Skip to content

Commit

Permalink
v0.4.4 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
wbaldoumas committed Aug 28, 2023
1 parent d059f20 commit 8b2a442
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 25 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,26 +70,26 @@ jobs:
env:
NUGET_KEY: ${{ secrets.NUGET_API_KEY }}

# - name: 🔨 set up python
# if: env.VERSION_CHANGED == '1'
# uses: actions/setup-python@v4
# with:
# python-version: '3.x'

# - name: 📢 extract release notes
# if: env.VERSION_CHANGED == '1'
# run: |
# python scripts/extract_changelog.py CHANGELOG.md latest_release.md

# - name: 📑 create github release
# if: env.VERSION_CHANGED == '1'
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: v${{ env.VERSION }}
# release_name: Release v${{ env.VERSION }}
# draft: false
# prerelease: false
# body_path: latest_release.md
- name: 🔨 set up python
if: env.VERSION_CHANGED == '1'
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: 📢 extract release notes
if: env.VERSION_CHANGED == '1'
run: |
python scripts/extract_changelog.py CHANGELOG.md latest_release.md
- name: 📑 create github release
if: env.VERSION_CHANGED == '1'
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ env.VERSION }}
release_name: Release v${{ env.VERSION }}
draft: false
prerelease: false
body_path: latest_release.md
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.4] 2023-08-27

### Updated

- Swap to deterministic build
- Expand `<inheritdoc />` tags in generated XML documentation

## [0.4.1] 2023-05-19

### Updated
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ These features make LazyCart a powerful tool for any application that requires e
LazyCart is offered as a [NuGet package](https://www.nuget.org/packages/LazyCart) and can be installed with the following command, or your favorite package manager:

```shell
dotnet add package LazyCart --version 0.4.1
dotnet add package LazyCart --version 0.4.4
```

### 🛠️ Building From Source
Expand Down
2 changes: 1 addition & 1 deletion src/LazyCart/LazyCart.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<!-- NuGet Packaging Properties -->
<PropertyGroup>
<Version>0.4.3</Version>
<Version>0.4.4</Version>
<Authors>William Baldoumas</Authors>
<Description>A tiny library to lazily generate the Nth cartesian product.</Description>
<Copyright>Copyright ©2023 William Baldoumas</Copyright>
Expand Down

0 comments on commit 8b2a442

Please sign in to comment.