From 8a80456f4c071f1b38d8acb81fc8b40466ebe4f6 Mon Sep 17 00:00:00 2001 From: Dominic Ricottone Date: Tue, 13 Sep 2022 23:52:42 -0500 Subject: [PATCH] Quick fix I missed the version numbers in the **/internals.py files. --- Makefile | 6 +++--- neopaste/internals.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 691b541..e7d5283 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=1.0.1 +VERSION=1.0.2 PY_COMPILE_BIN=python -m py_compile @@ -11,7 +11,7 @@ UNITTEST_FILE_BIN=unittest --color UNITTEST_DIR_BIN=unittest --color --working-directory . #MYPY_BIN=python -m mypy -MYPY_BIN=MYPY_CACHE_DIR=gap/__mypycache__ mypy +MYPY_BIN=MYPY_CACHE_DIR=neopaste/__mypycache__ mypy #PIPX_BIN=python -m pipx PIPX_BIN=pipx @@ -25,7 +25,7 @@ neopaste/cli.py: neopaste/cli.toml .PHONY: test test: - $(PY_COMPILE_BIN) gap/*.py + $(PY_COMPILE_BIN) neopaste/*.py PY_FILES=neopaste/cli.py neopaste/__main__.py neopaste/columnar.py neopaste/internals.py PYBUILD_FILES=pyproject.toml LICENSE.md README.md diff --git a/neopaste/internals.py b/neopaste/internals.py index 951247c..a183615 100644 --- a/neopaste/internals.py +++ b/neopaste/internals.py @@ -3,7 +3,7 @@ import sys from typing import * -VERSION = (1,0,0,) +VERSION = (1,0,2,) def _read_stdin() -> Iterator[str]: try: diff --git a/pyproject.toml b/pyproject.toml index 1546a2a..8c65a8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "neopaste" description = "Paste file streams side-by-side" readme = "README.md" -version = "1.0.1" +version = "1.0.2" authors = [ { name = "Dominic Ricottone", email = "me@dominic-ricottone.com" } ] urls = { source = "git.dominic-ricottone.com/~dricottone/neopaste" } license = { file = "LICENSE.md" } -- 2.45.2