Skip to content

Commit

Permalink
Prepare for 1.4.4 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
CPrescher committed Nov 14, 2023
1 parent c43592d commit 1c7344e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
41 changes: 20 additions & 21 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
name: CD

on:
[push]
# release:
# types: [published]
release:
types: [published]

jobs:
build_package:
Expand Down Expand Up @@ -42,23 +41,23 @@ jobs:
name: wheels
path: dist/*

# pypi-publish:
# name: Upload release to PyPI
# needs: build_package
# runs-on: ubuntu-latest
# environment:
# name: pypi
# url: https://pypi.org/p/glassure/
# permissions:
# id-token: write
# steps:
# - uses: actions/download-artifact@v3
# with:
# name: wheels
# path: dist
pypi-publish:
name: Upload release to PyPI
needs: build_package
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/glassure/
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
with:
name: wheels
path: dist

# - name: check the dist folder
# run: ls dist
- name: check the dist folder
run: ls dist

# - name: Publish to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.4.4 (2023/11/14)

### Bugfixes
- subtraction and addition of patterns works now correctly when both have different x values

## 1.4.3 (2023/11/02)

### Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion glassure/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf8 -*-
__version__ = '1.4.3'
__version__ = '1.4.3.post1.dev0+5a8281b'
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 = "glassure"
version = "1.4.3"
version = "1.4.4"
description = "API and GUI for analysis of X-ray total scattering data"
authors = ["Clemens Prescher <clemens.prescher@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 1c7344e

Please sign in to comment.