Skip to content

Commit

Permalink
Preparing 1.7.3 release
Browse files Browse the repository at this point in the history
Signed-off-by: Sandro Bonazzola <sandro.bonazzola@gmail.com>
  • Loading branch information
sandrobonazzola committed Nov 28, 2023
1 parent 8e5508d commit a3013a6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .automation/build-srpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ make clean
# build tarballs
make dist

SUFFIX=".$(date -u +%Y%m%d%H%M%S).git$(git rev-parse --short HEAD)"
# SUFFIX=".$(date -u +%Y%m%d%H%M%S).git$(git rev-parse --short HEAD)"

# Build SRPMs
rpmbuild \
Expand Down
4 changes: 2 additions & 2 deletions .copr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ git-safe:
git config --global --add safe.directory "$(shell pwd)"

srpm: installdeps git-safe
$(eval SUFFIX=$(shell sh -c " echo '.$$(date -u +%Y%m%d%H%M%S).git$$(git rev-parse --short HEAD)'"))
# $(eval SUFFIX=$(shell sh -c " echo '.$$(date -u +%Y%m%d%H%M%S).git$$(git rev-parse --short HEAD)'"))
# changing the spec file as passing -D won't preserve the suffix when rebuilding in mock
sed "s:%{?release_suffix}:${SUFFIX}:" -i vdsm-jsonrpc-java.spec.in
#sed "s:%{?release_suffix}:${SUFFIX}:" -i vdsm-jsonrpc-java.spec.in
.automation/build-srpm.sh
cp rpmbuild/SRPMS/$(shell sh -c "basename '$(spec)'|cut -f1 -d.")*.src.rpm $(outdir)
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ AC_PREREQ(2.60)

define([VERSION_MAJOR], [1])
define([VERSION_MINOR], [7])
define([VERSION_FIX], [2])
define([VERSION_FIX], [3])
define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX)
define([VERSION_SUFFIX], [])

Expand Down
9 changes: 8 additions & 1 deletion vdsm-jsonrpc-java.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Summary: JsonRpc java client (%{name}) for oVirt
Name: @PACKAGE_NAME@
Version: @PACKAGE_RPM_VERSION@
Release: @PACKAGE_RPM_RELEASE@%{?release_suffix}%{?dist}
License: LGPLv2+
License: LGPL-2.0-or-later
URL: http://www.ovirt.org
Source: http://resources.ovirt.org/pub/ovirt-master-snapshot/src/%{name}/%{name}-%{package_version}.tar.gz
Group: Development/Libraries
Expand Down Expand Up @@ -110,6 +110,13 @@ export JAVA_HOME="%{_java_jdk_home}"
%files javadoc -f .mfiles-javadoc

%changelog
* Tue Nov 28 2023 Sandro Bonazzola <sandro.bonazzola@gmail.com> - 1.7.3
- Rebase on upstream 1.7.3.
- Migrated to SPDX license.
- Disconnect the session after SSL handshake issue.
- Replace secret data with asterisks in debug logs.
- Bump fasterxml jackson to avoid CVEs.

* Mon Jul 25 2022 Artur Socha <asocha@redhat.com> 1.7.2
- Fix expired SSL certificates validation on connect
- Fix bogus date in changelog
Expand Down

0 comments on commit a3013a6

Please sign in to comment.