Skip to content

Releases: wabiverse/icu

v76.1.2

05 Nov 05:52
07ddbe4
Compare
Choose a tag to compare
To use this release of icu in your own swift project, add icu as a package dependency in your project's Package.swift file.

Note

Adds a workaround for disabling the loading of the missing icudt76_dat file which otherwise creates an error when building OpenUSD's Pegtl library on Windows, which for OpenUSD's case, I don't believe is an issue at the current time of writing.

// swift-tools-version: 5.10

dependencies: [
  .package(url: "https://github.com/wabiverse/icu.git", from: "76.1.2"),
]
Then, for any target you'd like, add the icu product as a target dependency.
targets: [
  .target(
    name: "MyLibrary",
    dependencies: [
      /* add the icu product as a library dependency. */
      .product(name: "icuin", package: "icu"),
    ]
  ),
]

v76.1.1

05 Nov 02:24
c9dae8d
Compare
Choose a tag to compare
To use this release of icu in your own swift project, add icu as a package dependency in your project's Package.swift file.
// swift-tools-version: 5.10

dependencies: [
  .package(url: "https://github.com/wabiverse/icu.git", from: "76.1.1"),
]
Then, for any target you'd like, add the icu product as a target dependency.
targets: [
  .target(
    name: "MyLibrary",
    dependencies: [
      /* add the icu product as a library dependency. */
      .product(name: "icuin", package: "icu"),
    ]
  ),
]

v76.1.0

02 Nov 05:10
156397c
Compare
Choose a tag to compare
To use this release of icu in your own swift project, add icu as a package dependency in your project's Package.swift file.
// swift-tools-version: 5.10

dependencies: [
  .package(url: "https://github.com/wabiverse/icu.git", from: "76.1.0"),
]
Then, for any target you'd like, add the icu product as a target dependency.
targets: [
  .target(
    name: "MyLibrary",
    dependencies: [
      /* add the icu product as a library dependency. */
      .product(name: "icuin", package: "icu"),
    ]
  ),
]