Skip to content

Commit 7e1ebb2

Browse files
committed
bump version
1 parent a041ad9 commit 7e1ebb2

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
### UNRELEASED v2.7.0
2-
* add handling errors from `ackEvent` which resolved deadlock of **main select** of method `run` of `bootstrap` package
3-
* add tests that check this **main select** and test framework for it
4-
* update protobuf
1+
### v2.7.0
2+
* bootstrap: add handling errors from `ackEvent` which resolved deadlock of **main select**
3+
* bootstrap: add tests that check protocol interaction and test framework for it
4+
* update protobuf and grpc
55
* fix panics when service has no swagger doc
66
### v2.6.2
77
* add functionality to send requests from swagger-ui

bootstrap/bootstrap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
const (
15-
LibraryVersion = "2.6.2"
15+
LibraryVersion = "2.7.0"
1616
)
1717

1818
func init() {

bootstrap/module_runner.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ func makeRunner(cfg bootstrapConfiguration) *runner {
8989
}
9090

9191
func (b *runner) run() (ret error) {
92+
// TODO: убрать подписку, использовать ip конфиг-сервиса
9293
b.RequireModule("isp-gate", func(list []structure.AddressConfiguration) bool {
9394
if len(list) > 0 {
9495
address := list[0]

0 commit comments

Comments
 (0)