Skip to content

Commit

Permalink
v3.1.0 (#50)
Browse files Browse the repository at this point in the history
* Bump version to 3.1.0
* Don't run npm lint
* Fix version.sh
  • Loading branch information
bpepple committed Mar 30, 2024
1 parent aac716a commit 02b5a38
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bin/fix-lint-backend.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ poetry run ruff format .
############################################
##### Javascript, JSON, Markdown, YAML #####
############################################
npm run fix
#npm run fix

###################
###### Shell ######
Expand Down
4 changes: 2 additions & 2 deletions bin/lint-backend.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ poetry run vulture --exclude "*/venv/*.py,*/.tox/*.py,*/node_modules/*.py,*/test
############################################
##### Javascript, JSON, Markdown, YAML #####
############################################
npm run lint
npm run remark-check
#npm run lint
#npm run remark-check
1 change: 0 additions & 1 deletion bin/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ if [ "$VERSION" = "" ]; then
poetry version | awk '{print $2};'
else
poetry version "$VERSION"
cd frontend
npm version --allow-same-version --no-git-tag-version "$VERSION"
fi
2 changes: 1 addition & 1 deletion mokkari/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Project entry file."""

# Keep this at beginning of file to prevent circular import with session
__version__ = "3.0.1"
__version__ = "3.1.0"


from mokkari import exceptions, session, sqlite_cache
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.2.0",
"version": "3.1.0",
"description": "mokkari linting",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mokkari"
version = "3.0.1"
version = "3.1.0"
description = "Python wrapper for Metron API"
authors = ["Brian Pepple <bdpepple@gmail.com>"]
license = "GPL-3.0-or-later"
Expand Down

0 comments on commit 02b5a38

Please sign in to comment.