Skip to content

Commit

Permalink
upd: version
Browse files Browse the repository at this point in the history
  • Loading branch information
Illia Chaban committed Oct 1, 2023
1 parent c38ef5c commit d8ec1dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_VERSION=0.1.8
APP_VERSION=0.1.9
APP_PATH=simplepcap
APP_TEST_PATH=tests

Expand Down Expand Up @@ -57,7 +57,7 @@ run-docs:
update-version:
@echo "$(INFO) Updating app version..."
@sed -i 's/version = "[0-9]\.[0-9]\.[0-9]"/version = "$(APP_VERSION)"/g' pyproject.toml
@sed -i 's/version-[0-9]\.[0-9]\.[0-9]-blue/version-$(APP_VERSION)-blue/g' docs/index.md
@sed -i 's/__version__ = "[0-9]\.[0-9]\.[0-9]"/__version__ = "$(APP_VERSION)"/g' simplepcap/__init__.py
@echo "$(OK) App version updated to $(APP_VERSION)"


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "simplepcap"
version = "0.1.8"
version = "0.1.9"
description = "A simple pcap library for Python"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion simplepcap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.8"
__version__ = "0.1.9"

from .types import Version, Reserved, FileHeader, PacketHeader, Packet
from .parser import Parser
Expand Down

0 comments on commit d8ec1dd

Please sign in to comment.