diff --git a/.authors.yml b/.authors.yml index a6fd8350..f9244e0a 100644 --- a/.authors.yml +++ b/.authors.yml @@ -28,7 +28,7 @@ email: jaimergp@users.noreply.github.com aliases: - jaimergp - num_commits: 35 + num_commits: 37 first_commit: 2022-08-17 17:00:32 github: jaimergp - name: Trent Nelson @@ -87,7 +87,7 @@ aliases: - Conda Bot - conda bot - num_commits: 30 + num_commits: 33 first_commit: 2022-01-25 22:53:19 github: conda-bot - name: Aaron Meurer @@ -112,7 +112,7 @@ github: isuruf - name: pre-commit-ci[bot] email: 66853113+pre-commit-ci[bot]@users.noreply.github.com - num_commits: 7 + num_commits: 9 first_commit: 2023-08-21 19:22:51 github: pre-commit-ci[bot] - name: Martin Chilvers @@ -163,7 +163,7 @@ github: katietz - name: dependabot[bot] email: 49699333+dependabot[bot]@users.noreply.github.com - num_commits: 6 + num_commits: 11 first_commit: 2024-05-06 08:12:56 github: dependabot[bot] - name: JTignor-Raltron @@ -173,6 +173,10 @@ github: JTignor-Raltron - name: Marco Esters email: mesters@anaconda.com - num_commits: 11 + num_commits: 13 first_commit: 2024-01-26 08:11:25 github: marcoesters +- name: Klaus Zimmermann + email: klaus.zimmermann@quansight.com + num_commits: 1 + first_commit: 2024-06-11 12:01:54 diff --git a/.mailmap b/.mailmap index bb783335..2ddfc6fb 100644 --- a/.mailmap +++ b/.mailmap @@ -27,6 +27,7 @@ Jason McCampbell Kai Tietz Kale Franz Kale Franz Ken Odegard +Klaus Zimmermann Marco Esters Mark Wiebe Martin Chilvers diff --git a/AUTHORS.md b/AUTHORS.md index f256ad12..32e07e19 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -17,6 +17,7 @@ Authors are sorted alphabetically. * Kai Tietz * Kale Franz * Ken Odegard +* Klaus Zimmermann * Marco Esters * Mark Wiebe * Martin Chilvers diff --git a/CHANGELOG.md b/CHANGELOG.md index fe4bf5bc..ab126c09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ [//]: # (current developments) +## 2.1.2 (2024-08-07) + +### Bug fixes + +* Display shortcut name in Windows' "Open with" menu entries. (#225) +* Fix default MIME type registration on Linux. (#226 via #227) +* Add setuptools to recipe host requirements. (#237) + +### Contributors + +* @jaimergp +* @marcoesters +* @zklaus + + + ## 2.1.1 (2024-06-07) ### Bug fixes diff --git a/menuinst/_schema.py b/menuinst/_schema.py index 568cbac9..472862ac 100644 --- a/menuinst/_schema.py +++ b/menuinst/_schema.py @@ -119,7 +119,7 @@ class Linux(BasePlatformSpecific): Linux-specific instructions. Check the `Desktop entry specification - `__ + `__ for more details. """ @@ -141,7 +141,7 @@ class Linux(BasePlatformSpecific): Implements: Optional[Union[List[str], constr(regex=r"^.+;$")]] = None """ List of supported interfaces. See 'Interfaces' in `Desktop Entry Spec - `__. + `__. """ Keywords: Optional[Union[List[str], constr(regex=r"^.+;$")]] = None "Additional terms to describe this shortcut to aid in searching." diff --git a/menuinst/data/menuinst.schema.json b/menuinst/data/menuinst.schema.json index 9e49980b..3ce53052 100644 --- a/menuinst/data/menuinst.schema.json +++ b/menuinst/data/menuinst.schema.json @@ -61,7 +61,7 @@ }, "Linux": { "title": "Linux", - "description": "Linux-specific instructions.\n\nCheck the `Desktop entry specification\n`__\nfor more details.", + "description": "Linux-specific instructions.\n\nCheck the `Desktop entry specification\n`__\nfor more details.", "type": "object", "properties": { "name": { diff --git a/news/225-friendly-open-with b/news/225-friendly-open-with deleted file mode 100644 index 14ef86c2..00000000 --- a/news/225-friendly-open-with +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Display shortcut name in Windows' "Open with" menu entries. (#225) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/227-xdg-mime-default b/news/227-xdg-mime-default deleted file mode 100644 index d9e6bd73..00000000 --- a/news/227-xdg-mime-default +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Fix default MIME type registration on Linux. (#226 via #227) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/237-add-setuptools-req b/news/237-add-setuptools-req deleted file mode 100644 index f4cad04f..00000000 --- a/news/237-add-setuptools-req +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Add setuptools to recipe host requirements. (#237) - -### Deprecations - -* - -### Docs - -* - -### Other - -*