Skip to content

Commit

Permalink
Prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
svniemeijer committed Jul 24, 2023
1 parent 97b49d9 commit 3904698
Show file tree
Hide file tree
Showing 44 changed files with 56 additions and 48 deletions.
10 changes: 9 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
6.1 2023-07-24
~~~~~~~~~~~~~~

* The S3 bucket prefix is now created as a 'directory object' so its existence
can be explicitly checked.

Expand All @@ -17,8 +20,13 @@
* Fixed issue where muninn-summary could not group by core.physical_name or
core.archive_path.

* Fixed issue where muninn was incorrectly using subdirectories in the
temporary directory if the 'tempdir' archive configuration option was set.

* Fixed issue where archive.retrieve() and archive.export() were returning a
list if a single properties Struct was given as parameter.
list if a single properties Struct was given as parameter and
`use_enclosing_directory` was not set. Additionally, each entry for a
product where `use_enclosing_directory` _is_ set will now always be a list.

6.0.1 2022-11-17
~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2014-2022 S[&]T, The Netherlands.
Copyright (C) 2014-2023 S[&]T, The Netherlands.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
6 changes: 3 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ often require super user privileges.
Using pip:

```
$ pip install muninn-6.0.1.tar.gz
$ pip install muninn-6.1.tar.gz
```

Using setup.py:

```
$ tar xvfz muninn-6.0.1.tar.gz
$ cd muninn-6.0.1
$ tar xvfz muninn-6.1.tar.gz
$ cd muninn-6.1
$ python setup.py install
```

Expand Down
6 changes: 3 additions & 3 deletions muninn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function

__version__ = "6.0.1"
__copyright__ = "Copyright (C) 2014-2022 S[&]T, The Netherlands."
__version__ = "6.1"
__copyright__ = "Copyright (C) 2014-2023 S[&]T, The Netherlands."

__all__ = ["Error", "InternalError", "Struct", "Archive", "open", "config_path"]

Expand Down
2 changes: 1 addition & 1 deletion muninn/archive.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/core.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/database/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#
2 changes: 1 addition & 1 deletion muninn/database/blobgeometry.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/database/ewkb.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/database/postgresql.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/database/sql.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/database/sqlite.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/enum.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/extension.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/function.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/geometry.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/language.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/remote.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#
from __future__ import absolute_import, division, print_function

Expand Down
2 changes: 1 addition & 1 deletion muninn/schema.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/struct.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#
2 changes: 1 addition & 1 deletion muninn/tools/attach.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/destroy.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/export.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/hash.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/info.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/ingest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/list_tags.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/prepare.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/pull.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/remove.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/retrieve.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/search.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/strip.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/summary.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/tag.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/untag.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/update.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/tools/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/util.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion muninn/visitor.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2014-2022 S[&]T, The Netherlands.
# Copyright (C) 2014-2023 S[&]T, The Netherlands.
#

from __future__ import absolute_import, division, print_function
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name="muninn",
version="6.0.1",
version="6.1",
description="Data product catalogue and archive system",
url="https://github.com/stcorp/muninn",
author="S[&]T",
Expand Down

0 comments on commit 3904698

Please sign in to comment.