Skip to content

Commit 8b68ad1

Browse files
committed
(env-alias) bump version to 0.3.8
1 parent 1b4bec6 commit 8b68ad1

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.changelog/0.3.8.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
changes:
2+
- type: fix
3+
component: general
4+
description: Fixes bug with an early return preventing more than one env-alias setting;
5+
changes the old Logger class out for something a little more standard; move the
6+
readdocs-custom-steps file out of the way
7+
release_date: '2022-03-29'

package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
name: env-alias
3-
version: 0.3.7
3+
version: 0.3.8
44
author: Nicholas de Jong <[email protected]>
55
license: BSD2
66
description: Powerful helper utility to create shell alias commands to easily set collections of environment variables often with secret values from a variety of data-sources and data-formats.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setuptools.setup(
2323
name = 'env-alias',
24-
version = '0.3.7',
24+
version = '0.3.8',
2525
author = 'Nicholas de Jong',
2626
author_email = '[email protected]',
2727
description = 'Powerful helper utility to create shell alias commands to easily set collections of environment variables often with secret values from a variety of data-sources and data-formats.',

src/env_alias/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__title__ = "env-alias"
55
__author__ = "Nicholas de Jong <[email protected]>"
6-
__version__ = "0.3.7"
6+
__version__ = "0.3.8"
77
__license__ = "BSD2"
88

99
__logger_default_level__ = "error"

0 commit comments

Comments
 (0)