Skip to content

Commit

Permalink
Merge branch 'release/1.19.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
lueschem committed May 3, 2024
2 parents bf8cfe5 + 07576bd commit 96f7de8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
edi (1.19.1) noble; urgency=medium

[ Matthias Luescher ]
* Fixed edi project clean command.

-- Matthias Lüscher (Launchpad) <m.luescher@datacomm.ch> Fri, 03 May 2024 23:23:31 +0200

edi (1.19.0) noble; urgency=medium

[ Matthias Luescher ]
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
# built documents.
#
# The short X.Y version.
version = '1.19.0'
release = '1.19.0'
version = '1.19.1'
release = '1.19.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 4 additions & 0 deletions edi/commands/projectcommands/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class Configure(Project):

def __init__(self):
super().__init__()
self.clean_depth = 1
self.ansible_connection = 'buildah'
self._prepare_results = None

Expand Down Expand Up @@ -112,6 +113,9 @@ def clean_recursive(self, config_file, depth):
self.clean_depth = depth
self._dispatch(config_file, run_method=self._clean)

def clean(self, config_file):
self._dispatch(config_file, run_method=self._clean)

def _clean(self):
seal_file = self._get_seal_artifact().location
if os.path.exists(seal_file):
Expand Down
2 changes: 1 addition & 1 deletion edi/lib/versionhelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# The do_release script will update this version!
# During launchpad debuild neither the git version nor the package version is available.
edi_fallback_version = '1.19.0'
edi_fallback_version = '1.19.1'


def get_edi_version():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
setup(
name='edi',

version='1.19.0',
version='1.19.1',

description='Embedded Development Infrastructure - edi',
long_description=long_description,
Expand Down

0 comments on commit 96f7de8

Please sign in to comment.