Skip to content

Commit f48d3d5

Browse files
authored
Merge pull request #2067 from ergoplatform/v5.0.17
Candidate for 5.0.17 release
2 parents 5c713f8 + 87fb49a commit f48d3d5

File tree

356 files changed

+4470
-3624
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

356 files changed

+4470
-3624
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,16 @@ jobs:
3636
env:
3737
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
3838

39-
- name: Publish release
39+
- name: Publish ergo-wallet
4040
run: sbt +ergoWallet/publishSigned sonatypeBundleRelease
4141
env:
4242
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
4343
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
4444
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
45+
46+
- name: Publish ergo-core
47+
run: sbt +ergoCore/publishSigned sonatypeBundleRelease
48+
env:
49+
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
50+
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
51+
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ COPY build.sbt findbugs-exclude.xml ./
44
COPY project/ project/
55
COPY avldb/build.sbt avldb/build.sbt
66
COPY avldb/project/ avldb/project/
7+
COPY ergo-core/build.sbt ergo-core/build.sbt
8+
COPY ergo-core/project/ ergo-core/project/
79
COPY ergo-wallet/build.sbt ergo-wallet/build.sbt
810
COPY ergo-wallet/project/ ergo-wallet/project/
9-
COPY benchmarks/build.sbt benchmarks/build.sbt
1011
RUN sbt update
1112
COPY . ./
1213
RUN sbt assembly

avldb/project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.1.1
1+
sbt.version=1.2.8

avldb/project/plugins.sbt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ logLevel := Level.Warn
22

33
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
44

5-
addSbtPlugin("com.github.tkawachi" % "sbt-lock" % "0.4.0")
6-
75
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
86

97
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")

avldb/src/main/scala/scorex/core/serialization/ErgoSerializer.scala renamed to avldb/src/main/scala/org/ergoplatform/serialization/ErgoSerializer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package scorex.core.serialization
1+
package org.ergoplatform.serialization
22

33
import java.nio.ByteBuffer
44
import scorex.util.ByteArrayBuilder

avldb/src/main/scala/scorex/core/serialization/ManifestSerializer.scala renamed to avldb/src/main/scala/org/ergoplatform/serialization/ManifestSerializer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package scorex.core.serialization
1+
package org.ergoplatform.serialization
22

33
import scorex.crypto.authds.avltree.batch.Constants.DigestType
44
import scorex.crypto.authds.avltree.batch.serialization.{BatchAVLProverManifest, ProxyInternalNode}

avldb/src/main/scala/scorex/core/serialization/SubtreeSerializer.scala renamed to avldb/src/main/scala/org/ergoplatform/serialization/SubtreeSerializer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package scorex.core.serialization
1+
package org.ergoplatform.serialization
22

33
import scorex.crypto.authds.avltree.batch.Constants.DigestType
44
import scorex.crypto.authds.avltree.batch.{InternalProverNode, ProverLeaf, ProverNodes, VersionedLDBAVLStorage}

avldb/src/main/scala/scorex/crypto/authds/avltree/batch/ProverNodeSerializer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package scorex.crypto.authds.avltree.batch
22

33
import com.google.common.primitives.Ints
4-
import scorex.core.serialization.ErgoSerializer
4+
import org.ergoplatform.serialization.ErgoSerializer
55
import scorex.crypto.authds.{ADKey, ADValue, Balance}
66
import scorex.crypto.authds.avltree.batch.Constants.{DigestType, hashFn}
77
import scorex.crypto.authds.avltree.batch.serialization.ProxyInternalNode

avldb/src/test/scala/scorex/crypto/authds/avltree/batch/VersionedLDBAVLStorageSpecification.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import org.scalatest.Assertion
66
import org.scalatest.matchers.should.Matchers
77
import org.scalatest.propspec.AnyPropSpec
88
import org.scalatestplus.scalacheck.ScalaCheckPropertyChecks
9-
import scorex.core.serialization.{ManifestSerializer, SubtreeSerializer}
9+
import org.ergoplatform.serialization.{ManifestSerializer, SubtreeSerializer}
1010
import scorex.crypto.authds.avltree.batch.helpers.TestHelper
1111
import scorex.crypto.authds.{ADDigest, ADKey, ADValue, SerializedAdProof}
1212
import scorex.util.encode.Base16

benchmarks/Jenkinsfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

benchmarks/build.sbt

Lines changed: 0 additions & 6 deletions
This file was deleted.

benchmarks/src/test/resources/logback-bench.xml

Lines changed: 0 additions & 27 deletions
This file was deleted.

benchmarks/src/test/scala/org/ergoplatform/ModifiersApplicationBench.scala

Lines changed: 0 additions & 98 deletions
This file was deleted.

benchmarks/src/test/scala/org/ergoplatform/Utils.scala

Lines changed: 0 additions & 59 deletions
This file was deleted.

benchmarks/src/test/scala/org/ergoplatform/bench/BenchActor.scala

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)