Skip to content

Commit

Permalink
Merge pull request #316 from atsign-foundation/prod_release
Browse files Browse the repository at this point in the history
Update pubspec.yaml version
  • Loading branch information
sitaram-kalluri authored Sep 22, 2021
2 parents ecd66ea + 359f908 commit b058055
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 28 deletions.
2 changes: 2 additions & 0 deletions at_secondary/at_secondary_server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 3.0.1
- Fix null aware issue in sync verb handlers
## 3.0.0
- Sync Pagination feature
## 2.0.7
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:io';

import 'package:at_commons/at_commons.dart';
import 'package:at_secondary/src/conf/config_util.dart';

Expand Down Expand Up @@ -555,3 +556,7 @@ dynamic getConfigFromYaml(List<String> args) {
}
return value;
}

class ElementNotFoundException extends AtException {
ElementNotFoundException(message) : super(message);
}
56 changes: 28 additions & 28 deletions at_secondary/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.0.0
version: 3.0.1
repository: https://github.com/atsign-foundation/at_server
homepage: https://www.example.com
publish_to: none
Expand All @@ -17,35 +17,35 @@ dependencies:
collection: ^1.15.0
basic_utils: ^3.0.2
at_persistence_secondary_server: ^3.0.0
at_lookup: ^3.0.2
at_lookup: ^3.0.3
at_server_spec: ^3.0.0

dependency_overrides:
at_persistence_spec:
git:
url: https://github.com/atsign-foundation/at_server.git
path: at_persistence/at_persistence_spec
ref: trunk
at_utils:
git:
url: https://github.com/atsign-foundation/at_tools.git
path: at_utils
ref: trunk
at_commons:
git:
url: https://github.com/atsign-foundation/at_tools.git
path: at_commons
ref: trunk
at_persistence_secondary_server:
git:
url: https://github.com/atsign-foundation/at_server.git
path: at_secondary/at_persistence_secondary_server
ref: trunk
at_server_spec:
git:
url: https://github.com/atsign-foundation/at_server.git
path: at_server_spec
ref: trunk
#dependency_overrides:
# at_persistence_spec:
# git:
# url: https://github.com/atsign-foundation/at_server.git
# path: at_persistence/at_persistence_spec
# ref: trunk
# at_utils:
# git:
# url: https://github.com/atsign-foundation/at_tools.git
# path: at_utils
# ref: trunk
# at_commons:
# git:
# url: https://github.com/atsign-foundation/at_tools.git
# path: at_commons
# ref: trunk
# at_persistence_secondary_server:
# git:
# url: https://github.com/atsign-foundation/at_server.git
# path: at_secondary/at_persistence_secondary_server
# ref: trunk
# at_server_spec:
# git:
# url: https://github.com/atsign-foundation/at_server.git
# path: at_server_spec
# ref: trunk

dev_dependencies:
test: ^1.17.3
Expand Down

0 comments on commit b058055

Please sign in to comment.