Skip to content

Commit 4bf6c7e

Browse files
committed
release-2025.3.1: doc and script updates
1 parent 2d99d59 commit 4bf6c7e

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

buildScript/next-release-tag.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [ -z "${matchingReleaseTags[0]}" ]; then
2828
else
2929
for aTag in "${matchingReleaseTags[@]}"; do
3030
sedStr="s/release-${baseVer}.//"
31-
echo aTag $aTag
31+
# echo aTag $aTag
3232
asNum=$(echo $aTag | sed $sedStr)
3333
number_array+=("$asNum")
3434
done
@@ -40,12 +40,14 @@ fi
4040
# build the new tag string and then "git tag" and "git push --tags"
4141
#
4242
newReleaseTag=release-${baseVer}.${nextRev}
43+
dockerTag=${baseVer}.${nextRev}
4344
read -n1 -s -p "New ($branch branch) tag will be: $newReleaseTag, make tag? (y/n [y]): " makeTag
4445
echo
4546
makeTagLower=$(echo "$makeTag" | tr '[:upper:]' '[:lower:]')
4647
if [ "$makeTagLower" = "y" ] || [ "$makeTagLower" = "" ]; then
4748
echo '>>>>>' git tag $newReleaseTag
4849
git tag $newReleaseTag
50+
echo "docker tags: ${baseVer},${dockerTag},${branch},latest"
4951
read -n1 -s -p "push tags (y/n [n]): " doPush
5052
doPushLower=$(echo "$doPush" | tr '[:upper:]' '[:lower:]')
5153
echo

docs/release-notes.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88

99

1010
## Version 2025.3
11-
- 2025.3.0 - (June 6, 2025), planned _docker tag_: `2025.3.0`, `2025.3`, `latest`
11+
- 2025.3.1 - (June 9, 2025), _docker tag_: `2025.3.1`, `2025.3`, `latest`
12+
- 2025.3.0 - (June 6, 2025), planned _docker tag_: `2025.3.0`,
1213

1314
#### This release has a complete revamp of the Job monitor and extensive work to support Rubin, SPHEREx, and Euclid needs
1415

1516
#### Major Features
16-
- Job Monitor (formally Background Monitor): Complete revamp: Firefly-1698 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1742)), Firefly-1735 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1760)), Firefly-1327 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1765)), Firefly-1749 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1770))
17+
- Job Monitor (formally Background Monitor): Complete revamp: Firefly-1698 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1742)), Firefly-1735 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1760)), Firefly-1327 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1765)), Firefly-1749 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1770)), Firefly-1754 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1791))
1718
- Packaging: download script supports cutouts- Firefly-1662 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1715))
1819
- Packaging: download script checks for duplicates, better naming- Firefly-1704 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1745)),
1920
- Images: Wavelength readout includes bandwidth- Firefly-1482 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1733))
@@ -69,7 +70,12 @@
6970

7071

7172
### _Patches 2025.3_
72-
_initial release_
73+
- 2025.3.1
74+
- Fixed: cutouts not changing when the table is not the datalink table ([commit](https://github.com/Caltech-IPAC/firefly/commit/7a3b8cfb88eecb4bd2f34b1500213cf52f7bd95a))
75+
- Fixed: handle datalink for obscore tables that claim to be all images but are not ([commit](https://github.com/Caltech-IPAC/firefly/commit/37269537815ad886f445210f85335ab976c57d30))
76+
- Fixed: datalink text/plain files not processed correctly ([commit](https://github.com/Caltech-IPAC/firefly/commit/37269537815ad886f445210f85335ab976c57d30))
77+
- Fixed: Start tooltip layout. Firefly-1754 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1791))
78+
- Fixed: VoTableWriter missing RESOURCES in output file. Firefly-1563 ([PR](https://github.com/Caltech-IPAC/firefly/pull/1790))
7379

7480

7581

0 commit comments

Comments
 (0)