Compare commits

...

2 Commits

Author SHA1 Message Date
thunderbiscuit
189a9c08aa
chore: add developer information for jvm, android, and python libraries 2024-03-27 09:30:59 -04:00
thunderbiscuit
3d3dbef90b
chore: update libraries to official alpha 7 release versions 2024-03-26 14:45:40 -04:00
5 changed files with 18 additions and 3 deletions

View File

@ -2,4 +2,4 @@ org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true
kotlin.code.style=official kotlin.code.style=official
libraryVersion=1.0.0-alpha.2b-SNAPSHOT libraryVersion=1.0.0-alpha.7

View File

@ -80,6 +80,13 @@ afterEvaluate {
url.set("https://github.com/bitcoindevkit/bdk/blob/master/LICENSE-MIT") url.set("https://github.com/bitcoindevkit/bdk/blob/master/LICENSE-MIT")
} }
} }
developers {
developer {
id.set("bdkdevelopers")
name.set("Bitcoin Dev Kit Developers")
email.set("dev@bitcoindevkit.org")
}
}
scm { scm {
connection.set("scm:git:github.com/bitcoindevkit/bdk-ffi.git") connection.set("scm:git:github.com/bitcoindevkit/bdk-ffi.git")
developerConnection.set("scm:git:ssh://github.com/bitcoindevkit/bdk-ffi.git") developerConnection.set("scm:git:ssh://github.com/bitcoindevkit/bdk-ffi.git")

View File

@ -1,4 +1,4 @@
org.gradle.jvmargs=-Xmx1536m org.gradle.jvmargs=-Xmx1536m
android.enableJetifier=true android.enableJetifier=true
kotlin.code.style=official kotlin.code.style=official
libraryVersion=1.0.0-alpha.2b-SNAPSHOT libraryVersion=1.0.0-alpha.7

View File

@ -92,6 +92,13 @@ afterEvaluate {
url.set("https://github.com/bitcoindevkit/bdk/blob/master/LICENSE-MIT") url.set("https://github.com/bitcoindevkit/bdk/blob/master/LICENSE-MIT")
} }
} }
developers {
developer {
id.set("bdkdevelopers")
name.set("Bitcoin Dev Kit Developers")
email.set("dev@bitcoindevkit.org")
}
}
scm { scm {
connection.set("scm:git:github.com/bitcoindevkit/bdk-ffi.git") connection.set("scm:git:github.com/bitcoindevkit/bdk-ffi.git")
developerConnection.set("scm:git:ssh://github.com/bitcoindevkit/bdk-ffi.git") developerConnection.set("scm:git:ssh://github.com/bitcoindevkit/bdk-ffi.git")

View File

@ -18,7 +18,7 @@ import bdkpython as bdk
setup( setup(
name="bdkpython", name="bdkpython",
version="1.0.0a2.dev1", version="1.0.0-alpha7",
description="The Python language bindings for the Bitcoin Development Kit", description="The Python language bindings for the Bitcoin Development Kit",
long_description=LONG_DESCRIPTION, long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
@ -27,6 +27,7 @@ setup(
packages=["bdkpython"], packages=["bdkpython"],
package_dir={"bdkpython": "./src/bdkpython"}, package_dir={"bdkpython": "./src/bdkpython"},
url="https://github.com/bitcoindevkit/bdk-ffi", url="https://github.com/bitcoindevkit/bdk-ffi",
author="Bitcoin Dev Kit Developers <dev@bitcoindevkit.org>",
license="MIT or Apache 2.0", license="MIT or Apache 2.0",
# This is required to ensure the library name includes the python version, abi, and platform tags # This is required to ensure the library name includes the python version, abi, and platform tags
# See issue #350 for more information # See issue #350 for more information