From 82395c93d0f6a21cc750b7a6711c2fff31b3f2ab Mon Sep 17 00:00:00 2001 From: Michael Bentz Date: Mon, 15 Apr 2024 09:53:08 -0400 Subject: [PATCH 1/2] Remove submodule --- .gitmodules | 3 --- .vscode | 1 - 2 files changed, 4 deletions(-) delete mode 100644 .gitmodules delete mode 160000 .vscode diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index eb08756..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule ".vscode"] - path = .vscode - url = https://github.com/ctsit/.vscode diff --git a/.vscode b/.vscode deleted file mode 160000 index 8763da5..0000000 --- a/.vscode +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8763da50ef3416d50de44cfe13f8001de8985152 From 34740ae2566af573823858a251e20af148ee2592 Mon Sep 17 00:00:00 2001 From: Samantha Emerson Date: Mon, 15 Apr 2024 10:21:16 -0400 Subject: [PATCH 2/2] Update CHANGELOG and setup.py for release 1.13.1 --- CHANGELOG | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index be355eb..495a331 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,12 @@ Changelog ========= +## [1.13.1] - 2024-04-15 +### Summary +This release removes the `.vscode` sub-module from the NACCulator repo, since it points to a private repository and makes NACCulator difficult to install for those who do not have permissions for the .vscode repo. + +### Removed +* Remove private submodule (Michael Bentz) + ## [1.13.0] - 2024-03-07 ### Summary This release adds logging functionality (report_handler) to NACCulator's output (found in the `logs` folder), along with several minor bug fixes. diff --git a/setup.py b/setup.py index 67f2c1b..452df98 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages -VERSION = "1.13.0" +VERSION = "1.13.1" setup( name="nacculator",