Skip to content

Commit a8714ed

Browse files
authored
fix: ci issues after moving to HL (#178)
Signed-off-by: Javier Ribó <[email protected]>
1 parent 72e5169 commit a8714ed

File tree

12 files changed

+20
-17
lines changed

12 files changed

+20
-17
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Summarize the changes you're submitting in a few sentences, including Jira ticke
55
Link to existing ADR (Architecture Decision Record), if any. If relevant, describe other approaches explored and the selected approach. Documenting why the methods were not selected will create a knowledge base for future reference, helping prevent others from revisiting less optimal ideas.
66

77
### Checklist:
8-
- [ ] My PR follows the [contribution guidelines](https://github.com/input-output-hk/atala-prism-apollo/blob/main/CONTRIBUTING.md) of this project
8+
- [ ] My PR follows the [contribution guidelines](https://github.com/hyperledger/identus-apollo/blob/main/CONTRIBUTING.md) of this project
99
- [ ] My PR is free of third-party dependencies that don't comply with the [Allowlist](https://toc.hyperledger.org/governing-documents/allowed-third-party-license-policy.html#approved-licenses-for-allowlist)
1010
- [ ] I have commented my code, particularly in hard-to-understand areas
1111
- [ ] I have made corresponding changes to the documentation

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ let package = Package(
1313
targets: ["ApolloBinary"]
1414
),
1515
],
16+
1617
targets: [
1718
// LOCAL
1819
// .binaryTarget(
@@ -23,7 +24,7 @@ let package = Package(
2324
// RELEASE
2425
.binaryTarget(
2526
name: "ApolloBinary",
26-
url: "https://github.com/input-output-hk/atala-prism-apollo/releases/download/v1.3.5/Apollo.xcframework.zip",
27+
url: "https://github.com/hyperledger/identus-apollo/releases/download/v1.3.5/Apollo.xcframework.zip",
2728
checksum: "cd1be90019a8e7f4f1ed62bd412f673d45bdbba699a7ece504e139b07b5cb49a"
2829
)
2930
]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,15 +169,15 @@ Inside your `Package.swift` file, add the following
169169
```swift
170170
dependencies: [
171171
.package(
172-
url: "[email protected]:input-output-hk/atala-prism-apollo.git",
172+
url: "[email protected]:[email protected]:hyperledger/identus-apollo.git",
173173
from: "<latest version>"
174174
)
175175
]
176176
```
177177
### Using generated xcframework directly
178178
179179
The following instruction using Xcode 15
180-
1. Go the [Release Page](https://github.com/input-output-hk/atala-prism-apollo/releases) and check the latest version and download the `Apollo.xcframework.zip` file.
180+
1. Go the [Release Page](https://github.com/hyperledger/identus-apollo/releases) and check the latest version and download the `Apollo.xcframework.zip` file.
181181
2. Uncompress the downloaded file.
182182
3. Add the `Apollo.xcframework` to your Xcode project.
183183
4. When asked select Copy items if needed.

apollo/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ tasks.withType<DokkaTask>().configureEach {
773773
)
774774
sourceLink {
775775
localDirectory.set(projectDir.resolve("src"))
776-
remoteUrl.set(URL("https://github.com/input-output-hk/atala-prism-apollo/tree/main/src"))
776+
remoteUrl.set(URL("https://github.com/hyperledger/identus-apollo/tree/main/src"))
777777
remoteLineSuffix.set("#L")
778778
}
779779
externalDocumentationLink {
@@ -819,7 +819,7 @@ npmPublish {
819819
}
820820
repository {
821821
type.set("git")
822-
url.set("https://github.com/hyperledger/identus-apollo.git")
822+
url.set("https://github.com/hyperledger/identus-apollo")
823823
}
824824
}
825825
}

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ allprojects {
6363
}
6464
issueManagement {
6565
system.set("Github")
66-
url.set("https://github.com/input-output-hk/atala-prism-apollo")
66+
url.set("https://github.com/hyperledger/identus-apollo")
6767
}
6868
licenses {
6969
license {
@@ -124,9 +124,9 @@ allprojects {
124124
}
125125
}
126126
scm {
127-
connection.set("scm:git:git://input-output-hk/atala-prism-apollo.git")
128-
developerConnection.set("scm:git:ssh://input-output-hk/atala-prism-apollo.git")
129-
url.set("https://github.com/input-output-hk/atala-prism-apollo")
127+
connection.set("scm:git:git://[email protected]:hyperledger/identus-apollo.git")
128+
developerConnection.set("scm:git:ssh://[email protected]:hyperledger/identus-apollo.git")
129+
url.set("https://github.com/hyperledger/identus-apollo")
130130
}
131131
}
132132

commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Signed-off-by: Javier Ribó <[email protected]>

iOSLibs/IOHKAES/IOHKAES.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
s.license = 'MIT'
2525
s.homepage = 'https://github.com/input-output-hk/atala-prism-apollo'
2626
s.author = { 'Ahmed Moussa' => '[email protected]' }
27-
s.source = { :git => 'https://github.com/input-output-hk/atala-prism-apollo.git', :tag => s.version.to_s }
27+
s.source = { :git => 'https://github.com/[email protected]:hyperledger/identus-apollo.git', :tag => s.version.to_s }
2828
s.swift_version = '5.7'
2929
s.cocoapods_version = '>= 1.10.0'
3030
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

iOSLibs/IOHKCryptoKit/IOHKCryptoKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323

2424
s.homepage = 'https://github.com/input-output-hk/atala-prism-apollo'
2525
s.author = { 'Gonçalo Frade' => '[email protected]' }
26-
s.source = { :git => 'https://github.com/input-output-hk/atala-prism-apollo.git', :tag => s.version.to_s }
26+
s.source = { :git => 'https://github.com/[email protected]:hyperledger/identus-apollo.git', :tag => s.version.to_s }
2727
s.swift_version = '5.7'
2828
s.cocoapods_version = '>= 1.10.0'
2929

iOSLibs/IOHKRSA/IOHKRSA.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
s.license = 'MIT'
2525
s.homepage = 'https://github.com/input-output-hk/atala-prism-apollo'
2626
s.author = { 'Ahmed Moussa' => '[email protected]' }
27-
s.source = { :git => 'https://github.com/input-output-hk/atala-prism-apollo.git', :tag => s.version.to_s }
27+
s.source = { :git => 'https://github.com/[email protected]:hyperledger/identus-apollo.git', :tag => s.version.to_s }
2828
s.swift_version = '5.7'
2929
s.cocoapods_version = '>= 1.10.0'
3030
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

iOSLibs/IOHKSecureRandomGeneration/IOHKSecureRandomGeneration.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323

2424
s.homepage = 'https://github.com/input-output-hk/atala-prism-apollo'
2525
s.author = { 'Ahmed Moussa' => '[email protected]' }
26-
s.source = { :git => 'https://github.com/input-output-hk/atala-prism-apollo.git', :tag => s.version.to_s }
26+
s.source = { :git => 'https://github.com/[email protected]:hyperledger/identus-apollo.git', :tag => s.version.to_s }
2727
s.swift_version = '5.7'
2828
s.cocoapods_version = '>= 1.10.0'
2929
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

0 commit comments

Comments
 (0)