Skip to content

Commit

Permalink
Update did, did-framework, did-imp, ... to 0.1.0-M19 in main (#249)
Browse files Browse the repository at this point in the history
* Update did, did-framework, did-imp, ... to 0.1.0-M19 in main

* Fix method apply in DIDPeerServiceEncoded was rename to fromEndpoint

---------

Co-authored-by: FabioPinheiro <fabiomgpinheiro@gmail.com>
Signed-off-by: atala-dev <57987237+atala-dev@users.noreply.github.com>
  • Loading branch information
atala-dev and FabioPinheiro committed Apr 30, 2024
1 parent f3bbda3 commit 20a09da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inThisBuild(

/** Versions */
lazy val V = new {
val scalaDID = "0.1.0-M18"
val scalaDID = "0.1.0-M19"

// FIXME another bug in the test framework https://github.com/scalameta/munit/issues/554
val munit = "1.0.0-M11" // "0.7.29"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object AgentStub {
keyAgreement("H5wHQcecUqobAMT3RiNsAaYaFXIfTLCNhWAYXgTYv7E", "f8ce_zxdhIEy76JE21XpVDviRtR2amXaZ6NjYyIPjg4"),
keyAuthentication("LyMSyr_usdn3pHZc00IbJaS2RcvF4OcJTJIB2Vw6dLQ", "TQdV8Wduyz3OylN3YbyHR0R-aynF3C1tmvHAgl6b34I")
),
Seq(DIDPeerServiceEncoded(endpointBob))
Seq(DIDPeerServiceEncoded.fromEndpoint(endpointBob))
)

val endpointAlice = "http://localhost:8081"
Expand All @@ -38,7 +38,7 @@ object AgentStub {
keyAgreement("Z6D8LduZgZ6LnrOHPrMTS6uU2u5Btsrk1SGs4fn8M7c", "Sr4SkIskjN_VdKTn0zkjYbhGTWArdUNE4j_DmUpnQGw"),
keyAuthentication("INXCnxFEl0atLIIQYruHzGd5sUivMRyQOzu87qVerug", "MBjnXZxkMcoQVVL21hahWAw43RuAG-i64ipbeKKqwoA")
),
Seq(DIDPeerServiceEncoded(endpointAlice))
Seq(DIDPeerServiceEncoded.fromEndpoint(endpointAlice))
)

def aliceAgentLayer: ULayer[Agent] = ZLayer.succeed(aliceAgent)
Expand Down

0 comments on commit 20a09da

Please sign in to comment.