Skip to content

Commit

Permalink
Bump version number to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Z5T1 committed May 22, 2023
1 parent ca30bd4 commit ef81806
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion db/create_db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ INSERT INTO Tag (TagName, Description) VALUES
('ungrouped', 'Special tag that applies to hosts that do not have a tag. In addition to any hosts assigned to this tag, it will always apply to every host that does not have a tag.');

INSERT INTO Metadata (KeyName, Value) VALUES
('version', '0.1.3-dev0')
('version', '0.1.3')
;

CREATE VIEW HostHasTagView AS
Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Misc variables
VERSION=0.1.3-dev0
VERSION=0.1.3
DOTTED_VERSION:=$(shell echo $(VERSION) | sed -e s/-/./g)
PYTHON=python3

Expand Down
2 changes: 1 addition & 1 deletion lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "isidore"
version = "0.1.3-dev0"
version = "0.1.3"
keywords = [ "ansible", "inventory", "database", "isidore" ]
authors = [
{ name="Scott Court", email="Z5T1@Z5T1.com" },
Expand Down
2 changes: 1 addition & 1 deletion lib/src/isidore/libIsidore.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
class Isidore:

_conn = None
_version = '0.1.3-dev0'
_version = '0.1.3'

# Connects to a MySQL database and creates a new Isidore object to interact
# with it.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/isidore/libIsidoreCmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
class IsidoreCmdline:

_isidore = None
_version = '0.1.3-dev0'
_version = '0.1.3'

# Creates a new Isidore command prompt
# @param isidore The underlying Isidore instance for the command prompt
Expand Down

0 comments on commit ef81806

Please sign in to comment.