Skip to content

Commit 86198c2

Browse files
authored
Merge pull request #117 from csiro-coasts/release-0.6.1
Bump version to v0.6.1
2 parents 8d59e3f + 16c3386 commit 86198c2

File tree

7 files changed

+35
-50
lines changed

7 files changed

+35
-50
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,30 @@ jobs:
3030
shell: bash -l {0}
3131
run: unzip -l dist/*.whl | grep -q py.typed
3232

33+
build_conda:
34+
runs-on: ubuntu-latest
35+
timeout-minutes: 20
36+
needs: ['build']
37+
continue-on-error: true
38+
39+
if: startsWith(github.head_ref, 'release-')
40+
41+
steps:
42+
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v3
44+
with:
45+
repository: conda-forge/emsarray-feedstock
46+
path: emsarray-feedstock
47+
48+
- uses: ./.github/actions/environment
49+
with:
50+
python-version: ${{ env.python-version }}
51+
package-artifact-name: ${{ needs.build.outputs.artifact-name }}
52+
53+
- run: |
54+
conda install conda-build
55+
./scripts/build-local-conda-package.sh
56+
3357
test:
3458
name: python ${{ matrix.python-version }}, ${{ matrix.experimental && 'latest' || 'pinned' }} dependencies
3559
runs-on: ubuntu-latest

.github/workflows/release-branch.yaml

Lines changed: 0 additions & 40 deletions
This file was deleted.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
title: emsarray
3-
version: 0.6.0
4-
date-released: 2023-09-25
3+
version: 0.6.1
4+
date-released: 2023-09-27
55
type: software
66
authors:
77
- given-names: Tim

docs/internal/releasing.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ Push this branch and make a pull request on Github.
2525
2626
$ ./scripts/release.py pre 1.2.0
2727
28-
Manually run the 'Prerelease checks' workflow for this branch in the 'Actions' tab on Github.
29-
This will check that a conda package can be built from the Python package tarball.
28+
Merge this pull request once all the CI tests pass.
3029

3130
Build and publish packages
3231
==========================

docs/releases/development.rst renamed to docs/releases/0.6.1.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
=============================
2-
Next release (in development)
3-
=============================
1+
=====
2+
0.6.1
3+
=====
4+
5+
Released on 2023-09-27
46

57
* Fix transect plot title and units.
68
All attributes were being dropped accidentally in `prepare_data_array_for_transect()`.

docs/releases/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Release notes
44

55
.. toctree::
66

7-
development
7+
0.6.1
88
0.6.0
99
0.5.0
1010
0.4.3

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = emsarray
33
description = xarray extension that supports multiple geometry conventions
4-
version = 0.6.0
4+
version = 0.6.1
55
long_description = file: README.md
66
long_description_content_type = text/markdown
77
author = "Coastal Environmental Modelling team, Oceans and Atmosphere, CSIRO"
@@ -11,7 +11,7 @@ python_requires = ">=3.9"
1111

1212
project_urls =
1313
Documentation = https://emsarray.readthedocs.io/
14-
Release notes = https://emsarray.readthedocs.io/en/stable/releases/0.6.0/
14+
Release notes = https://emsarray.readthedocs.io/en/stable/releases/0.6.1/
1515
Source = https://github.com/csiro-coasts/emsarray/
1616

1717
[options]

0 commit comments

Comments
 (0)