Other: version bump and changelog Bridge James 1.8.2

This commit is contained in:
Jakub
2021-05-20 08:18:57 +02:00
parent 5d82c218ca
commit 4072205709
3 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,12 @@
Changelog [format](http://keepachangelog.com/en/1.0.0/) Changelog [format](http://keepachangelog.com/en/1.0.0/)
## [Bridge 1.8.1] James
### Fixed
* GODT-1165: Handle UID FETCH with sequence range of empty mailbox.
## [Bridge 1.8.0] James ## [Bridge 1.8.0] James
### Added ### Added

View File

@ -10,7 +10,7 @@ TARGET_OS?=${GOOS}
.PHONY: build build-ie build-nogui build-ie-nogui build-launcher build-launcher-ie versioner hasher .PHONY: build build-ie build-nogui build-ie-nogui build-launcher build-launcher-ie versioner hasher
# Keep version hardcoded so app build works also without Git repository. # Keep version hardcoded so app build works also without Git repository.
BRIDGE_APP_VERSION?=1.8.0+git BRIDGE_APP_VERSION?=1.8.1+git
IE_APP_VERSION?=1.3.3+git IE_APP_VERSION?=1.3.3+git
APP_VERSION:=${BRIDGE_APP_VERSION} APP_VERSION:=${BRIDGE_APP_VERSION}
SRC_ICO:=logo.ico SRC_ICO:=logo.ico

View File

@ -9,6 +9,7 @@ Feature: Servers are closed when no internet
Then IMAP client "i1" is logged out Then IMAP client "i1" is logged out
And SMTP client "s1" is logged out And SMTP client "s1" is logged out
Given the internet connection is restored Given the internet connection is restored
And 1 second pass
And there is IMAP client "i2" logged in as "user" And there is IMAP client "i2" logged in as "user"
And there is SMTP client "s2" logged in as "user" And there is SMTP client "s2" logged in as "user"
When IMAP client "i2" gets info of "INBOX" When IMAP client "i2" gets info of "INBOX"
@ -20,6 +21,7 @@ Feature: Servers are closed when no internet
Then IMAP client "i2" is logged out Then IMAP client "i2" is logged out
And SMTP client "s2" is logged out And SMTP client "s2" is logged out
Given the internet connection is restored Given the internet connection is restored
And 1 second pass
And there is IMAP client "i3" logged in as "user" And there is IMAP client "i3" logged in as "user"
And there is SMTP client "s3" logged in as "user" And there is SMTP client "s3" logged in as "user"
When IMAP client "i3" gets info of "INBOX" When IMAP client "i3" gets info of "INBOX"