Skip to content

Commit

Permalink
Release prep
Browse files Browse the repository at this point in the history
Update changelog and fix some lint errors I missed.
  • Loading branch information
smsearcy committed Sep 13, 2024
1 parent c29e614 commit 4e821ab
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,17 @@ Categories:
### Security
-->

## 0.2.2 - 2024-09-12

### Fixed

* Fix issue installing wxPython Docset due folder name with version. [#7](https://github.com/smsearcy/zeal-feeds/issues/7)

## 0.2.1 - 2023-02-10

Packaging release to fix broken link to CI status in README.
### Fixed

* Packaging release to fix broken link to CI status in README.

## 0.2.0 - 2023-02-09

Expand Down
4 changes: 2 additions & 2 deletions src/zeal_feeds/zeal.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@

from __future__ import annotations

import functools
import json
import re
import sys
import tarfile
from collections.abc import Iterator
Expand Down Expand Up @@ -37,6 +35,8 @@ class MetaData:

@attrs.define
class Zeal:
"""Class for interacting with the installed Zeal application."""

docset_path: Path

@classmethod
Expand Down
6 changes: 3 additions & 3 deletions tests/test_zeal.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
"""Test functionality in the `zeal` module."""

from zeal_feeds.zeal import Zeal
from zeal_feeds.user_contrib import DocSet, DocSetAuthor
from zeal_feeds.zeal import Zeal


def test_docset_install(data_folder, tmp_path) -> None:

def test_docset_install_wrong_folder_name(data_folder, tmp_path) -> None:
"""Verify that a tarball with the "wrong" folder name installs correctly."""
docset_name = "wxPython"
docset_archive = "wxPython.tgz"

Expand Down

0 comments on commit 4e821ab

Please sign in to comment.