Skip to content

Commit

Permalink
update help messages, bump version to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
boldandbrad committed Oct 19, 2023
1 parent a29e4b4 commit bc61f37
Showing 4 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -9,15 +9,18 @@ and this project adheres to

## [Unreleased]

## [v1.1.0] - 2023-10-18

### Changed

- `meeple add`
- Add multiple items to a collection at once. ([#77](https://github.com/boldandbrad/meeple-cli/issues/77))
- Dim already added message.
- Update help text wording to be consistent with action.
- Dim 'already added' message text.
- `meeple drop`
- Drop multiple items from a collection at once. ([#78](https://github.com/boldandbrad/meeple-cli/issues/78))
- Update help text wording to be consistent with action.
- Dim already dropped message.
- Dim 'already dropped' message text.
- `meeple collections` - Update 'pending update' warning message text.

### Fixed
2 changes: 1 addition & 1 deletion src/meeple/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Local board game collection manager. Powered by BoardGameGeek."""

# release version
__version__ = "1.1.0b2"
__version__ = "1.1.0"
6 changes: 3 additions & 3 deletions src/meeple/command/add.py
Original file line number Diff line number Diff line change
@@ -20,11 +20,11 @@
@click.option("--update", is_flag=True, help="Update collection data.")
@click.help_option("-h", "--help")
def add(collection_name: str, bgg_ids: [int], update: bool) -> None:
"""Add an item to a collection.
"""Add items to a collection.
- COLLECTION_NAME is the name of the intended destination collection.
- COLLECTION_NAME is the name of the collection to be modified.
- BGG_IDS is the BoardGameGeek ID(s) of the board game/expansion(s) to be added.
- BGG_IDS are BoardGameGeek ID(s) of the item(s) to be added.
"""
multi_add = len(bgg_ids) > 1

4 changes: 2 additions & 2 deletions src/meeple/command/drop.py
Original file line number Diff line number Diff line change
@@ -20,11 +20,11 @@
@click.option("--update", is_flag=True, help="Update collection data.")
@click.help_option("-h", "--help")
def drop(collection_name: str, bgg_ids: [int], update: bool) -> None:
"""Remove an item from a collection.
"""Drop items from a collection.
- COLLECTION_NAME is the name of the collection to be modified.
- BGG_IDS is the BoardGameGeek ID(s) of the board game/expansion(s) to be dropped.
- BGG_IDS are BoardGameGeek ID(s) of the item(s) to be dropped.
"""
multi_drop = len(bgg_ids) > 1

0 comments on commit bc61f37

Please sign in to comment.