Skip to content

Commit

Permalink
fix: move to hl
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo committed Jul 8, 2024
1 parent 72e5169 commit 23b34d2
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Summarize the changes you're submitting in a few sentences, including Jira ticke
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.

### Checklist:
- [ ] My PR follows the [contribution guidelines](https://github.com/input-output-hk/atala-prism-apollo/blob/main/CONTRIBUTING.md) of this project
- [ ] My PR follows the [contribution guidelines](https://github.com/hyperledger/identus-apollo/blob/main/CONTRIBUTING.md) of this project
- [ ] 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)
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let package = Package(
// RELEASE
.binaryTarget(
name: "ApolloBinary",
url: "https://github.com/input-output-hk/atala-prism-apollo/releases/download/v1.3.5/Apollo.xcframework.zip",
url: "https://github.com/hyperledger/identus-apollo/releases/download/v1.3.5/Apollo.xcframework.zip",
checksum: "cd1be90019a8e7f4f1ed62bd412f673d45bdbba699a7ece504e139b07b5cb49a"
)
]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,15 @@ Inside your `Package.swift` file, add the following
```swift
dependencies: [
.package(
url: "[email protected]:input-output-hk/atala-prism-apollo.git",
url: "[email protected]:[email protected]:hyperledger/identus-apollo.git",
from: "<latest version>"
)
]
```
### Using generated xcframework directly
The following instruction using Xcode 15
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.
1. Go the [Release Page](https://github.com/hyperledger/identus-apollo/releases) and check the latest version and download the `Apollo.xcframework.zip` file.
2. Uncompress the downloaded file.
3. Add the `Apollo.xcframework` to your Xcode project.
4. When asked select Copy items if needed.
Expand Down
4 changes: 2 additions & 2 deletions apollo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ tasks.withType<DokkaTask>().configureEach {
)
sourceLink {
localDirectory.set(projectDir.resolve("src"))
remoteUrl.set(URL("https://github.com/input-output-hk/atala-prism-apollo/tree/main/src"))
remoteUrl.set(URL("https://github.com/hyperledger/identus-apollo/tree/main/src"))
remoteLineSuffix.set("#L")
}
externalDocumentationLink {
Expand Down Expand Up @@ -819,7 +819,7 @@ npmPublish {
}
repository {
type.set("git")
url.set("https://github.com/hyperledger/identus-apollo.git")
url.set("https://github.com/hyperledger/identus-apollo")
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ allprojects {
}
issueManagement {
system.set("Github")
url.set("https://github.com/input-output-hk/atala-prism-apollo")
url.set("https://github.com/hyperledger/identus-apollo")
}
licenses {
license {
Expand Down Expand Up @@ -124,9 +124,9 @@ allprojects {
}
}
scm {
connection.set("scm:git:git://input-output-hk/atala-prism-apollo.git")
developerConnection.set("scm:git:ssh://input-output-hk/atala-prism-apollo.git")
url.set("https://github.com/input-output-hk/atala-prism-apollo")
connection.set("scm:git:git://[email protected]:hyperledger/identus-apollo.git")
developerConnection.set("scm:git:ssh://[email protected]:hyperledger/identus-apollo.git")
url.set("https://github.com/hyperledger/identus-apollo")
}
}

Expand Down
2 changes: 1 addition & 1 deletion iOSLibs/IOHKAES/IOHKAES.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Pod::Spec.new do |s|
s.license = 'MIT'
s.homepage = 'https://github.com/input-output-hk/atala-prism-apollo'
s.author = { 'Ahmed Moussa' => '[email protected]' }
s.source = { :git => 'https://github.com/input-output-hk/atala-prism-apollo.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/[email protected]:hyperledger/identus-apollo.git', :tag => s.version.to_s }
s.swift_version = '5.7'
s.cocoapods_version = '>= 1.10.0'
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
Expand Down
2 changes: 1 addition & 1 deletion iOSLibs/IOHKCryptoKit/IOHKCryptoKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Pod::Spec.new do |s|

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

Expand Down
2 changes: 1 addition & 1 deletion iOSLibs/IOHKRSA/IOHKRSA.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Pod::Spec.new do |s|
s.license = 'MIT'
s.homepage = 'https://github.com/input-output-hk/atala-prism-apollo'
s.author = { 'Ahmed Moussa' => '[email protected]' }
s.source = { :git => 'https://github.com/input-output-hk/atala-prism-apollo.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/[email protected]:hyperledger/identus-apollo.git', :tag => s.version.to_s }
s.swift_version = '5.7'
s.cocoapods_version = '>= 1.10.0'
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Pod::Spec.new do |s|

s.homepage = 'https://github.com/input-output-hk/atala-prism-apollo'
s.author = { 'Ahmed Moussa' => '[email protected]' }
s.source = { :git => 'https://github.com/input-output-hk/atala-prism-apollo.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/[email protected]:hyperledger/identus-apollo.git', :tag => s.version.to_s }
s.swift_version = '5.7'
s.cocoapods_version = '>= 1.10.0'
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/atala-prism-apollo.git"
"url": "git+https://github.com/[email protected]:hyperledger/identus-apollo.git"
},
"author": "IOG",
"license": "ISC",
"bugs": {
"url": "https://github.com/input-output-hk/atala-prism-apollo/issues"
"url": "https://github.com/hyperledger/identus-apollo/issues"
},
"homepage": "https://github.com/input-output-hk/atala-prism-apollo#readme",
"homepage": "https://github.com/hyperledger/identus-apollo#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
Expand Down

0 comments on commit 23b34d2

Please sign in to comment.