Skip to content

Commit

Permalink
fix: Update the version to 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sitaram-kalluri committed Dec 9, 2024
1 parent 594d592 commit c3c2321
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions packages/at_secondary_server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 3.1.1
- fix: Store "publicKeyHash" value in the keystore
# 3.1.0
- feat: sync skip deletes until changes
- fix: Enable persistence of the Initialization Vector for "defaultEncryptionPrivateKey" and "selfEncryptionKey" in
Expand Down
2 changes: 1 addition & 1 deletion packages/at_secondary_server/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: at_secondary
description: Implementation of secondary server.
version: 3.1.0
version: 3.1.1
repository: https://github.com/atsign-foundation/at_server
homepage: https://www.example.com
publish_to: none
Expand Down
8 changes: 4 additions & 4 deletions tests/at_end2end_test/test/lookup_verb_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ void main() {
test('A test to verify lookup metadata contains public key hash value',
() async {
Version atSign1ServerVersion = Version.parse(await sh1.getVersion());
if (atSign1ServerVersion < Version(3, 1, 0)) {
if (atSign1ServerVersion < Version(3, 1, 1)) {
print(
'Found $atSign_1 with server version: $atSign1ServerVersion. This test is only applicable for server version greater than 3.1.0. Skipping the test');
'Found $atSign_1 with server version: $atSign1ServerVersion. This test is only applicable for server version least 3.1.1. Skipping the test');
return;
}
Version atSign2ServerVersion = Version.parse(await sh2.getVersion());
if (atSign2ServerVersion < Version(3, 1, 0)) {
if (atSign2ServerVersion < Version(3, 1, 1)) {
print(
'Found $atSign_2 with server version: $atSign2ServerVersion. This test is only applicable for server version greater than 3.1.0. Skipping the test');
'Found $atSign_2 with server version: $atSign2ServerVersion. This test is only applicable for server version least 3.1.1. Skipping the test');
return;
}
var lastValue = Random().nextInt(5);
Expand Down

0 comments on commit c3c2321

Please sign in to comment.