Skip to content

Commit da368c4

Browse files
committed
Prepare release 1.1.3
1 parent f48dc9e commit da368c4

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ jobs:
9696
9797
publish-to-testpypi:
9898
name: Publish Resourcecode 📦 to TestPyPI
99+
if: "!startsWith(github.ref, 'refs/tags/')" # only publish to testPyPI for non-tagged pushes
99100
needs:
100101
- build
101102
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## Version 1.3 (18/03/2024)
2+
### 🎉 New Features
3+
- Add support for pandas 2.X branch
4+
5+
## Version 1.2 (15/3/2024)
6+
### 🎉 New Features
7+
- Add support for python 3.12
8+
19
## Version 1.1 (14/03/2024)
210
### 🎉 New Features
311
- New `.to_mat()` method to export the data downloaded to a MATLAB file, with the computation of the correct MATLAB time format.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ type: software
88
license: 'GPL-3.0-or-later'
99
repository-code: "https://resourcecode-project.github.io/py-resourcecode/"
1010
url: "https://resourcecode-project.github.io/py-resourcecode/"
11-
version: 1.1.2
12-
date-released: '2023-03-14'
11+
version: 1.1.3
12+
date-released: '2023-03-18'
1313
authors:
1414
- given-names: Nicolas
1515
family-names: Raillard

resourcecode/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
# You should have received a copy of the GNU General Public License along
1818
# with Resourcecode. If not, see <https://www.gnu.org/licenses/>.
1919

20-
numversion = (1, 1, 2)
20+
numversion = (1, 1, 3)
2121
__version__ = ".".join(str(num) for num in numversion)

0 commit comments

Comments
 (0)