Skip to content

Commit

Permalink
Release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gpaulissen committed Jun 3, 2024
1 parent a8314c4 commit 3374d60
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-Drevision=3.2.0-SNAPSHOT
-Drevision=3.2.0
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
GIT := git
PERL := perl
BRANCH := master
MVN := mvn

.PHONY: tag

Expand All @@ -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<MAJOR>.<MINOR>.<PATCH> allowed") unless (s/^v\d+\.\d+\.\d+// && !m/SNAPSHOT/) }' $(TAG)
$(GIT) tag -a $(TAG) -m "$(TAG)"
Expand Down

0 comments on commit 3374d60

Please sign in to comment.