Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: justindujardin/pathy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.1
Choose a base ref
...
head repository: justindujardin/pathy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.5.2
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Apr 23, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8001907 View commit details

Commits on Apr 24, 2021

  1. chore(release): 0.5.2

    ## [0.5.2](v0.5.1...v0.5.2) (2021-04-24)
    
    ### Features
    
    * **cli:** add version number to cli help string ([#55](#55)) ([8001907](8001907))
    semantic-release-bot committed Apr 24, 2021
    Copy the full SHA
    9f30ca4 View commit details
Showing with 11 additions and 3 deletions.
  1. +7 −0 CHANGELOG.md
  2. +1 −1 README.md
  3. +1 −1 pathy/about.py
  4. +2 −1 pathy/cli.py
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.5.2](https://github.com/justindujardin/pathy/compare/v0.5.1...v0.5.2) (2021-04-24)


### Features

* **cli:** add version number to cli help string ([#55](https://github.com/justindujardin/pathy/issues/55)) ([8001907](https://github.com/justindujardin/pathy/commit/800190760759f35a545948a12417952451e7891f))

## [0.5.1](https://github.com/justindujardin/pathy/compare/v0.5.0...v0.5.1) (2021-04-23)


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -412,7 +412,7 @@ client library prefers.

# CLI

Pathy command line interface.
Pathy command line interface. (v0.5.1)

**Usage**:

2 changes: 1 addition & 1 deletion pathy/about.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__: str = "pathy"
__version__: str = "0.5.1"
__version__: str = "0.5.2"
__summary__: str = "pathlib.Path subclasses for local and cloud bucket storage"
__uri__: str = "https://github.com/justindujardin/pathy"
__author__: str = "Justin DuJardin"
3 changes: 2 additions & 1 deletion pathy/cli.py
Original file line number Diff line number Diff line change
@@ -5,8 +5,9 @@
import typer

from . import BasePath, FluidPath, Pathy
from .about import __version__

app: typer.Typer = typer.Typer(help="Pathy command line interface.")
app: typer.Typer = typer.Typer(help=f"Pathy command line interface. (v{__version__})")


@app.command()