Skip to content

Commit 020609c

Browse files
committed
release: v1.0.7 and fix conda upload extension
1 parent 5bc19d0 commit 020609c

5 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
env:
4040
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
4141
run: |
42-
anaconda -t $ANACONDA_TOKEN upload conda-bld/noarch/ununennium-*.tar.bz2 --label main
42+
anaconda -t $ANACONDA_TOKEN upload conda-bld/noarch/ununennium-* --label main

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
---
2121

22+
## [1.0.7] - 2025-12-16
23+
24+
### Fixed
25+
- Resolved CI/CD pipeline issues caused by history rewrite for security.
26+
- Fixed Conda build dependency `einops` by adding `conda-forge` channel.
27+
- Updated repository workflow configuration to use secure GitHub Secrets.
28+
2229
## [1.0.6] - 2025-12-16
2330

2431
### Added

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "ununennium" %}
2-
{% set version = "1.0.6" %}
2+
{% set version = "1.0.7" %}
33

44
package:
55
name: {{ name|lower }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "ununennium"
7-
version = "1.0.6"
7+
version = "1.0.7"
88
description = "Production-grade Python library for satellite and geospatial imagery machine learning"
99
readme = "README.md"
1010
license = "Apache-2.0"

src/ununennium/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package version."""
22

3-
__version__ = "1.0.6"
3+
__version__ = "1.0.7"

0 commit comments

Comments
 (0)