Skip to content

Commit 3a25ae4

Browse files
authored
Release 2.4.0 (#267)
1 parent e8365d1 commit 3a25ae4

File tree

13 files changed

+103
-148
lines changed

13 files changed

+103
-148
lines changed

.authors.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
github: dbast
6262
- name: Conda Bot
6363
64-
num_commits: 32
64+
num_commits: 39
6565
first_commit: 2022-01-17 20:22:29
6666
github: conda-bot
6767
aliases:
@@ -86,7 +86,7 @@
8686
first_commit: 2022-02-17 10:23:53
8787
- name: Daniel Holth
8888
89-
num_commits: 26
89+
num_commits: 31
9090
first_commit: 2021-08-20 21:11:50
9191
github: dholth
9292
- name: Vadim Zayakin
@@ -102,7 +102,7 @@
102102
first_commit: 2022-02-09 01:00:38
103103
- name: Jannis Leidel
104104
105-
num_commits: 9
105+
num_commits: 10
106106
first_commit: 2021-09-17 21:51:27
107107
github: jezdez
108108
- name: Tobias "Tobi" Koch
@@ -122,7 +122,7 @@
122122
- name: pre-commit-ci[bot]
123123
email: 66853113+pre-commit-ci[bot]@users.noreply.github.com
124124
github: pre-commit-ci[bot]
125-
num_commits: 14
125+
num_commits: 17
126126
first_commit: 2023-01-20 04:55:56
127127
- name: Justin Wood (Callek)
128128
@@ -131,6 +131,6 @@
131131
github: callek
132132
- name: jaimergp
133133
134-
num_commits: 2
134+
num_commits: 4
135135
first_commit: 2024-04-02 13:11:21
136136
github: jaimergp

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
[//]: # (current developments)
22

3+
## 2.4.0 (2024-10-08)
4+
5+
### Enhancements
6+
7+
* Expose API and CLI for which components will be listed as part of `cph list`. (#253)
8+
* Allow `cph list` on remote `.conda` artifact URLs. (#252 via #254)
9+
10+
### Bug fixes
11+
12+
* Use force_zip64=True when directly creating .conda files. Allows >2GB
13+
(compressed) size. (#248)
14+
* Replace `.conda` or `.tar.bz2` extensions from end of string only instead of
15+
`str.replace(...)` (#251)
16+
17+
### Other
18+
19+
* Improve type annotations on an internal function (#257)
20+
21+
### Contributors
22+
23+
* @conda-bot
24+
* @dholth
25+
* @jezdez
26+
* @jaimergp
27+
* @pre-commit-ci[bot]
28+
29+
30+
331
## 2.3.0 (2024-06-05)
432

533
### Enhancements

conda.recipe/meta.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ test:
3838
- pytest
3939
- pytest-cov
4040
- pytest-mock
41-
- pytest-xprocess
4241
imports:
4342
- conda_package_handling
4443
- conda_package_handling.api

news/248-use-zip64

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

news/251-extension-str-replace

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

news/253-components-list

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

news/254-list-remote

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

news/improve-typing

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

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@
3434
"myst-parser",
3535
"mdit-py-plugins>=0.3.0",
3636
],
37-
"test": ["mock", "pytest", "pytest-cov", "pytest-mock", "pytest-xprocess", "bottle"],
37+
"test": [
38+
"mock",
39+
"pytest",
40+
"pytest-cov",
41+
"pytest-mock",
42+
"bottle",
43+
],
3844
},
3945
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.3.0"
1+
__version__ = "2.4.0"

0 commit comments

Comments
 (0)