Skip to content

Commit 0053fda

Browse files
authored
Merge pull request #9624 from Roasbeef/0-19-branch
build: bump version to v0.19 rc1
2 parents 1cebfed + 5b93319 commit 0053fda

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build/version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ const (
4444
AppMajor uint = 0
4545

4646
// AppMinor defines the minor version of this binary.
47-
AppMinor uint = 18
47+
AppMinor uint = 19
4848

4949
// AppPatch defines the application patch for this binary.
50-
AppPatch uint = 99
50+
AppPatch uint = 00
5151

5252
// AppPreRelease MUST only contain characters from semanticAlphabet per
5353
// the semantic versioning spec.
54-
AppPreRelease = "beta"
54+
AppPreRelease = "beta.rc1"
5555
)
5656

5757
func init() {

chainio/dispatcher.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ func (b *BlockbeatDispatcher) dispatchBlocks(
162162
// new block arrives for subsystems.
163163
clog.Debugf("%v", lnutils.NewSeparatorClosure())
164164

165-
clog.Infof("Received new block %v at height %d, "+
165+
clog.Debugf("Received new block %v at height %d, "+
166166
"notifying consumers...", blockEpoch.Hash,
167167
blockEpoch.Height)
168168

@@ -179,7 +179,7 @@ func (b *BlockbeatDispatcher) dispatchBlocks(
179179
b.log().Errorf("Notify block failed: %v", err)
180180
}
181181

182-
b.log().Infof("Notified all consumers on new block "+
182+
b.log().Debugf("Notified all consumers on new block "+
183183
"in %v", time.Since(start))
184184

185185
// A query has been made to fetch the current height, we now

0 commit comments

Comments
 (0)