From 3374d6055917587e0f713ebb5f9a5ff7c47bf44b Mon Sep 17 00:00:00 2001 From: Gert-Jan Paulissen Date: Mon, 3 Jun 2024 17:41:51 +0200 Subject: [PATCH] Release 3.2.0 --- .mvn/maven.config | 2 +- CHANGELOG.md | 12 +++++++++++- Makefile | 9 +++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/.mvn/maven.config b/.mvn/maven.config index 15344741..d8a549cb 100644 --- a/.mvn/maven.config +++ b/.mvn/maven.config @@ -1 +1 @@ --Drevision=3.2.0-SNAPSHOT +-Drevision=3.2.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index ba723403..fb8f4ba2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,11 +15,21 @@ Types of changes: ## [Unreleased] +## [3.2.0] - 2024-06-03 + +### Added + - [Provide SQL Developer Code Style Profile.](https://github.com/paulissoft/oracle-tools/issues/163) -- [DDL generation on 23c gives this error: ORA-31600: invalid input value OID for parameter NAME in function SET_TRANSFORM_PARAM](https://github.com/paulissoft/oracle-tools/issues/162) + +### Changed + - [The database UI component should be skipped when there is no APEX needed.](https://github.com/paulissoft/oracle-tools/issues/161) - [Modifying the MSG_CONSTANTS_PKG blocks due to processes using its constants.](https://github.com/paulissoft/oracle-tools/issues/160) +### Fixed + +- [DDL generation on 23c gives this error: ORA-31600: invalid input value OID for parameter NAME in function SET_TRANSFORM_PARAM](https://github.com/paulissoft/oracle-tools/issues/162) + ## [3.1.1] - 2024-05-23 ### Fixed diff --git a/Makefile b/Makefile index 5cda28f3..3db63603 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ GIT := git PERL := perl BRANCH := master +MVN := mvn .PHONY: tag @@ -15,6 +16,14 @@ help: ## This help. @$(PERL) -ne 'printf(qq(%-30s %s\n), $$1, $$2) if (m/^((?:\w|[.%-])+):.*##\s*(.*)$$/)' $(MAKEFILE_LIST) # @echo home: $(home) +install: ## Install Java library + @$(MVN) -N clean install + @$(MVN) -f jdbc/pom.xml clean install + +deploy: install ## Deploy Java library + @$(MVN) -N deploy + @$(MVN) -f jdbc/pom.xml deploy + tag: ## Tag the package on GitHub. @$(PERL) -e 'my @argv = @ARGV; foreach (@ARGV) { die("Wrong tag version (@argv): only v.. allowed") unless (s/^v\d+\.\d+\.\d+// && !m/SNAPSHOT/) }' $(TAG) $(GIT) tag -a $(TAG) -m "$(TAG)"