From e565b99bec7d4c1d25a86ca5637d6e492fab5498 Mon Sep 17 00:00:00 2001 From: Bjorn Pettersen Date: Thu, 2 Jan 2025 03:32:34 +0100 Subject: [PATCH] tagged-upversion --- dkbuild.yml | 2 +- seeqret/__init__.py | 2 ++ setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dkbuild.yml b/dkbuild.yml index 8949f91..fc42aa3 100644 --- a/dkbuild.yml +++ b/dkbuild.yml @@ -3,7 +3,7 @@ _schema: https://static.datakortet.no/schema/dkbuild.schema.yaml package: name: seeqret description: Safely transferring code secrets - version: 0.1.0 + version: 0.1.2 created: 2024 build: diff --git a/seeqret/__init__.py b/seeqret/__init__.py index 3d3ad1d..4092bf7 100644 --- a/seeqret/__init__.py +++ b/seeqret/__init__.py @@ -5,6 +5,8 @@ from seeqret.seeqrypt.utils import load_symetric_key from seeqret.run_utils import cd +__version__ = '0.1.2' + def get(key, app='*', env='*'): """Get a value from the configuration. diff --git a/setup.py b/setup.py index 1211953..6013054 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import setuptools -version = '0.1.0' +version = '0.1.2' setuptools.setup( name='seeqret',