Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kotlin Native support #19

Closed
sebleclerc opened this issue Mar 2, 2020 · 19 comments · Fixed by #76
Closed

Kotlin Native support #19

sebleclerc opened this issue Mar 2, 2020 · 19 comments · Fixed by #76
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@sebleclerc
Copy link
Contributor

Hi there!
I'm really looking forward to use pbandk for my Kotlin Multiplatform project, but it's coming short of Kotlin Native support. I'm willing to dig into this but first I wanted to know if any of you (contributors) have any tip or advance regarding what will be required to implement? Or anything I that could be helpful to me?

Thanks!

@garyp
Copy link
Collaborator

garyp commented Mar 2, 2020

Hi @sebleclerc. We don't have any immediate need for Kotlin Native support internally at Streem, so if you wanted to contribute it that would be very appreciated. I'd suggest you take a look at the existing PR for Kotlin Native support that was done against the cretz/pbandk repo (which this project forked from): cretz/pb-and-k#15. I haven't yet looked at it in depth, so I'm not sure if it's usable as-is or needs more work. But probably should be a good starting point for you either way.

A few other tips:

@sebleclerc
Copy link
Contributor Author

@garyp Native support is essential for our usage of KMP, so that's why I want to contribute.

Thanks for pointing that PR! For sure I'll have a look and probably base a few things on this. I like the idea of the Pure Kotlin approach. I will evaluate it. Keeping the way it is will limit the number of changed files.

For sure I will want to add the conformance-native to the CI. Shouldn't be that hard.

As per the Gradle plugin, do you know how much work it involves and the time required? If it's not that much of a deal, it can be really interesting to move forward with newer ways of KMP. For sure the sooner it's done, the less work it involves 😄

@garyp
Copy link
Collaborator

garyp commented Mar 3, 2020

As per the Gradle plugin, do you know how much work it involves and the time required? If it's not that much of a deal, it can be really interesting to move forward with newer ways of KMP. For sure the sooner it's done, the less work it involves 😄

@sebleclerc We haven't looked yet at the effort involved to switch to the new gradle plugin. But I have played with it on other KMP projects and it doesn't seem like it'd be a huge effort. I'm pretty busy with other projects until around late April. But if you're ready to work on Kotlin Native support and this is a blocker for you, I'll find some time to update to the new kotlin-multiplatform gradle plugin. I want to encourage more contributors to pbandk 😄

@sebleclerc
Copy link
Contributor Author

@garyp Alright! Thanks, I’ll keep you posted.

@sebleclerc
Copy link
Contributor Author

@garyp I did got the PR into my fork. I ran current conformance to make sure everything was working and I had 3 tests that weren't:
CleanShot 2020-03-05 at 16 06 05@2x

Can you confirm that these are also not working on your side ? Thanks

@sebleclerc
Copy link
Contributor Author

@garyp Also, I might be blocked by the multiplatform plugin. Not sure ... but when I try to build the :runtime:runtime-native project, it fails because it can't find any kotlinx serialization references. I did add a reference to kotlinx serialization inside the runtime-native project, but nothing. Anything that can be of help? Thanks!

This is my build.gradle for now

buildscript {
    ext.kotlin_version = '1.3.61'
    ext.kotlin_serialization_version = '0.14.0'
    ext.kotlin_native_gradle_plugin_version = '1.3.41'
    ext.spring_boot_gradle_plugin_version = '2.1.7.RELEASE'

    repositories {
        google()
        jcenter()
        maven {
            url 'https://dl.bintray.com/jetbrains/kotlin-native-dependencies'
        }
        maven {
            url 'https://plugins.gradle.org/m2/'
        }
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
        classpath "org.jetbrains.kotlin:kotlin-native-gradle-plugin:$kotlin_native_gradle_plugin_version"
        classpath "org.springframework.boot:spring-boot-gradle-plugin:$spring_boot_gradle_plugin_version"
    }
}

allprojects {
    group 'com.github.streem.pbandk'
    version '0.8.0'

    repositories {
        google()
        jcenter()
    }
}

project(':runtime:runtime-common') {
    apply plugin: 'kotlin-platform-common'
    apply plugin: 'kotlinx-serialization'

    dependencies {
        compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$kotlin_serialization_version"
        testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
        testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
    }

    task generateWellKnownTypes {
        dependsOn ':protoc-gen-kotlin:protoc-gen-kotlin-jvm:installDist'
        doFirst {
            def protocPath = System.getProperty('protoc.path')
            if (protocPath == null) throw new InvalidUserDataException('System property protoc.path must be set')
            runProtoGen(Paths.get(protocPath, 'include').toString(), 'src/main/kotlin', 'pbandk.wkt', 'debug', 'google/protobuf')
        }
    }

    archivesBaseName = 'pbandk-runtime-common'
    publishSettings(project, archivesBaseName, 'Common library for pbandk protobuf code')
}

project(':runtime:runtime-js') {
    apply plugin: 'kotlin-platform-js'
    apply plugin: 'kotlinx-serialization'

    dependencies {
        expectedBy project(':runtime:runtime-common')
        compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime-js:$kotlin_serialization_version"
        testCompile "org.jetbrains.kotlin:kotlin-test-js:$kotlin_version"
    }
    compileKotlin2Js {
        kotlinOptions.moduleKind = 'commonjs'
    }
    archivesBaseName = 'pbandk-runtime-js'
    publishSettings(project, archivesBaseName, 'JS library for pbandk protobuf code')
}

project(':runtime:runtime-jvm') {
    apply plugin: 'kotlin-platform-jvm'
    apply plugin: 'kotlinx-serialization'
    sourceCompatibility = '1.6'
    compileKotlin {
        kotlinOptions.jvmTarget = '1.6'
    }
    compileTestKotlin {
        kotlinOptions.jvmTarget = '1.6'
    }
    dependencies {
        expectedBy project(':runtime:runtime-common')
        compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialization_version"
        compile 'com.google.protobuf:protobuf-java:3.11.1'
        testCompile 'junit:junit:4.12'
        testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
        testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
    }
    test {
        testLogging {
            outputs.upToDateWhen {false}
            showStandardStreams = true
            exceptionFormat = 'full'
            events 'passed', 'skipped', 'failed'
        }
    }

    task generateTestTypes {
        dependsOn ':protoc-gen-kotlin:protoc-gen-kotlin-jvm:installDist'
        doFirst {
            runProtoGen('src/test/proto', 'src/test/kotlin', 'pbandk.testpb', 'debug', 'pbandk/testpb')
        }
        doFirst {
            exec {
                commandLine('protoc', '-Isrc/test/proto', '--java_out=src/test/java', 'src/test/proto/pbandk/testpb/test.proto')
            }
        }
    }

    archivesBaseName = 'pbandk-runtime-jvm'
    publishSettings(project, archivesBaseName, 'JVM library for pbandk protobuf code')
}

project(':runtime:runtime-native') {
    apply plugin: 'konan'
    apply plugin: 'kotlinx-serialization'

    konanArtifacts {
        library('pbandk') {
            enableMultiplatform true
        }
    }

    dependencies {
        expectedBy project(':runtime:runtime-common')
        compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialization_version"
    }

    archivesBaseName = 'pbandk-runtime-native'
    publishSettings(project, archivesBaseName, 'Native library for pbandk protobuf code')
}

project(':protoc-gen-kotlin:protoc-gen-kotlin-common') {
    apply plugin: 'kotlin-platform-common'
    apply plugin: 'kotlinx-serialization'

    dependencies {
        compile project(':runtime:runtime-common')
        compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$kotlin_serialization_version"
        testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
        testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
    }

    task generateProto {
        dependsOn ':protoc-gen-kotlin:protoc-gen-kotlin-jvm:installDist'
        doFirst {
            runProtoGen('src/main/proto', 'src/main/kotlin', 'pbandk.gen.pb', 'debug')
        }
    }

    archivesBaseName = 'protoc-gen-kotlin-common'
    publishSettings(project, archivesBaseName, 'Common library for pbandk protobuf code generator')
}

project(':protoc-gen-kotlin:protoc-gen-kotlin-jvm') {
    apply plugin: 'kotlin-platform-jvm'
    apply plugin: 'kotlinx-serialization'
    apply plugin: 'application'
    apply plugin: 'org.springframework.boot'

    sourceCompatibility = '1.8'
    compileKotlin {
        kotlinOptions.jvmTarget = '1.8'
    }
    compileTestKotlin {
        kotlinOptions.jvmTarget = '1.8'
    }
    mainClassName = 'pbandk.gen.MainKt'
    applicationName = 'protoc-gen-kotlin'
    dependencies {
        expectedBy project(':protoc-gen-kotlin:protoc-gen-kotlin-common')
        compile project(':runtime:runtime-jvm')
        compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialization_version"
        testCompile 'junit:junit:4.12'
        testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
        testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
    }
    test {
        testLogging {
            outputs.upToDateWhen {false}
            showStandardStreams = true
            exceptionFormat = 'full'
            events 'passed', 'skipped', 'failed'
        }
    }
    jar {
        enabled = true
    }
    bootJar {
        classifier = 'jvm8'
        launchScript()
    }
    configurations.archives.artifacts.removeIf { it.name ==~ /.*-boot/ && it.type ==~ /zip|tar/ }
    artifacts {
        archives bootJar
    }

    archivesBaseName = 'protoc-gen-kotlin-jvm'
    publishSettings(project, archivesBaseName, 'JVM library for pbandk protobuf code generator')
}

/*
project(':protoc-gen-kotlin:protoc-gen-kotlin-native') {
    apply plugin: 'konan'
    konanArtifacts {
        program('protoc-gen-kotlin-native') {
            enableMultiplatform true
            libraries {
                allLibrariesFrom project(':runtime:runtime-native')
            }
        }
    }
    dependencies {
        expectedBy project(':protoc-gen-kotlin:protoc-gen-kotlin-common')
    }
}
*/

project(':conformance:conformance-common') {
    apply plugin: 'kotlin-platform-common'
    apply plugin: 'kotlinx-serialization'
    dependencies {
        compile project(':runtime:runtime-common')
        compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$kotlin_serialization_version"
        testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
        testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
    }

    task generateProto {
        dependsOn ':protoc-gen-kotlin:protoc-gen-kotlin-jvm:installDist'
        doFirst {
            runProtoGen('src/main/proto', 'src/main/kotlin', 'pbandk.conformance.pb', 'debug')
        }
    }
}

project(':conformance:conformance-js') {
    apply plugin: 'kotlin-platform-js'
    apply plugin: 'kotlinx-serialization'
    dependencies {
        expectedBy project(':conformance:conformance-common')
        compile project(':runtime:runtime-js')
        compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime-js:$kotlin_serialization_version"
        testCompile "org.jetbrains.kotlin:kotlin-test-js:$kotlin_version"
    }
    compileKotlin2Js {
        kotlinOptions.moduleKind = 'commonjs'
    }
}

project(':conformance:conformance-jvm') {
    apply plugin: 'kotlin-platform-jvm'
    apply plugin: 'kotlinx-serialization'
    apply plugin: 'application'
    sourceCompatibility = '1.8'
    compileKotlin {
        kotlinOptions.jvmTarget = '1.8'
    }
    compileTestKotlin {
        kotlinOptions.jvmTarget = '1.8'
    }
    mainClassName = 'pbandk.conformance.MainKt'
    dependencies {
        expectedBy project(':conformance:conformance-common')
        compile project(':runtime:runtime-jvm')
        compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
        compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialization_version"
        testCompile 'junit:junit:4.12'
        testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
        testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
    }
    test {
        testLogging {
            outputs.upToDateWhen {false}
            showStandardStreams = true
            exceptionFormat = 'full'
            events 'passed', 'skipped', 'failed'
        }
    }
}

project(':conformance:conformance-native') {
    apply plugin: 'konan'
    apply plugin: 'kotlinx-serialization'

    konanArtifacts {
        program('pbandk-conformance') {
            enableMultiplatform true
            libraries {
                allLibrariesFrom project(':runtime:runtime-native')
            }
        }
    }
    dependencies {
        expectedBy project(':conformance:conformance-common')
    }
}

import java.nio.file.Paths
allprojects {
    ext.runProtoGen = { inPath, outPath, kotlinPackage = null, logLevel = null, inSubPath = null ->
        // Build CLI args
        def args = ['protoc']
        args << '--kotlin_out='
        if (kotlinPackage != null) args[-1] += "kotlin_package=$kotlinPackage,"
        if (logLevel != null) args[-1] += "log=$logLevel,"
        args[-1] += 'json_use_proto_names=true,'
        args[-1] += 'empty_arg:' + Paths.get(outPath)
        args << '--plugin=protoc-gen-kotlin=' +
            Paths.get(project.rootDir.toString(), 'protoc-gen-kotlin/protoc-gen-kotlin-jvm/build/install/protoc-gen-kotlin/bin/protoc-gen-kotlin')
        if (System.properties['os.name'].toLowerCase().contains('windows')) args[-1] += '.bat'
        def includePath = Paths.get(inPath)
        if (!includePath.absolute) includePath = Paths.get(project.projectDir.toString(), inPath)
        args << '-I' << includePath
        def filePath = includePath
        if (inSubPath != null) filePath = includePath.resolve(inSubPath)
        args += filePath.toFile().listFiles().findAll {
            it.isFile() && it.toString().endsWith('.proto')
        }
        // Run it
        exec { commandLine(*args) }
    }
}

def publishSettings(project, projectName, projectDescription) {
    project.with {
        if (!project.hasProperty('ossrhUsername')) return
        apply plugin: 'maven'
        apply plugin: 'signing'

        task packageSources(type: Jar) {
            classifier = 'sources'
            from sourceSets.main.allSource
            if (project.name.endsWith('-jvm') || project.name.endsWith('-js')) {
                duplicatesStrategy = 'exclude'
                def commonProject = project.parent.subprojects.find { it.name.endsWith('-common') }
                from(sourceSets.main.allSource + commonProject.sourceSets.main.allSource)
            }
        }

        task packageJavadoc(type: Jar) {
            // Empty to satisfy Sonatype's javadoc.jar requirement
            classifier 'javadoc'
        }

        artifacts {
            archives packageSources, packageJavadoc
        }

        signing {
            sign configurations.archives
        }

        uploadArchives {
            repositories {
                mavenDeployer {
                    beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
                    repository(url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2/') {
                        authentication(userName: ossrhUsername, password: ossrhPassword)
                    }
                    snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots/') {
                        authentication(userName: ossrhUsername, password: ossrhPassword)
                    }
                    pom.project {
                        name projectName
                        packaging 'jar'
                        description projectDescription
                        url 'https://github.com/streem/pbandk'
                        scm {
                            connection 'scm:git:git@github.com:streem/pbandk.git'
                            developerConnection 'scm:git:git@github.com:streem/pbandk.git'
                            url 'git@github.com:streem/pbandk.git'
                        }
                        licenses {
                            license {
                                name 'MIT License'
                                url 'https://opensource.org/licenses/MIT'
                            }
                        }
                        developers {
                            developer {
                                id 'streem'
                                name 'Streem, Inc.'
                                url 'https://github.com/streem'
                            }
                        }
                    }
                }
            }
        }
    }
}

@garyp
Copy link
Collaborator

garyp commented Mar 6, 2020

@garyp I did got the PR into my fork. I ran current conformance to make sure everything was working and I had 3 tests that weren't:
CleanShot 2020-03-05 at 16 06 05@2x

Can you confirm that these are also not working on your side ? Thanks

If I run the conformance tests using conformance/test-conformance.sh from the master branch of pbandk, all of the tests pass. Were you running this in a clean checkout or was this the result after the Kotlin/Native changes were added?

@garyp
Copy link
Collaborator

garyp commented Mar 6, 2020

@sebleclerc Regarding the kotlinx-serialization error you're getting, your dependency should be on org.jetbrains.kotlinx:kotlinx-serialization-runtime-native rather than org.jetbrains.kotlinx:kotlinx-serialization-runtime in the :runtime:runtime-native subproject.

Also, you might need to update pbandk to a more recent gradle version. The kotlinx-serialization README says:

For Native artifact, Gradle metadata is required (put the line enableFeaturePreview('GRADLE_METADATA') in your gradle.properties) and minimal supported version of Gradle is 5.3.

@sebleclerc
Copy link
Contributor Author

If I run the conformance tests using conformance/test-conformance.sh from the master branch of pbandk, all of the tests pass. Were you running this in a clean checkout or was this the result after the Kotlin/Native changes were added?

I tried with both. I'll try and clone from the streem repo. But one thing I just saw if that a compile from runtime-jvm is using version 3.11.1 of Protobuf and I did my tests from the latest 3.11.4. Maybe it has something to do with it?

@sebleclerc
Copy link
Contributor Author

Also, I did:

  • Update gradle version to 5.3 ✅
  • Add GRADLE_METADATA
  • Update the compile to use runtime... it didn't worked at first because of this error:
Build file '/Users/seb/Develop/studyo-pbandk/build.gradle' line: 132

A problem occurred evaluating root project 'pbandk'.
> Could not find method compile() for arguments [org.jetbrains.kotlinx:kotlinx-serialization-runtime-native:0.14.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

Those dependencies just work fine inside runtime-js and runtime-jvm but can't get them to work in the native one... 🤔Still think it can have something to do with the multiplatform version/plugin/settings

@garyp
Copy link
Collaborator

garyp commented Mar 7, 2020

But one thing I just saw if that a compile from runtime-jvm is using version 3.11.1 of Protobuf and I did my tests from the latest 3.11.4. Maybe it has something to do with it?

Yes, a newer version of protobuf can definitely report new failures since protobuf is constantly expanding the conformance tests with every release. That's why the pbandk instructions for running the conformance tests (https://github.com/streem/pbandk/blob/master/README.md#conformance-tests) reference a specific version of protobuf: 3.10.1.

I'll also try running the tests with 3.11.4 and see if I get these new failures. If so, then these are probably conformance bugs we'll want to fix.

@sebleclerc
Copy link
Contributor Author

I did bump the project to gradle 5.3 but since then I can't build ( and installDist for conformance test) the project.

I did a test on a fresh clone from the main streem repo and I have the same error when syncing with gradle:
Could not resolve: project :runtime:runtime-common

@sebleclerc
Copy link
Contributor Author

sebleclerc commented Mar 9, 2020

From what I read here ( link ) this is the new way of setting a project for Kotlin multiplatform. We define project where they each have their build.gradle with a root one too. And we define source sets for each with common code with platform specific and dependencies for each.

Is that what you meant @garyp when you talked about updating the multiplatform plugin? I don't mind digging into this if this will help me with the native support of pbandk. Also, if this is the case, do you mind moving on to using build.gradle.kts files ?

@garyp
Copy link
Collaborator

garyp commented Mar 10, 2020

@sebleclerc I didn't quite understand what that link was talking about. When I was referring to updating the multiplatform plugin, I was talking about setting up the project to follow the structure described at https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html. If you want to dig into updating pbandk to use that new structure (and plugin), we'll gladly accept a PR.

Also, if this is the case, do you mind moving on to using build.gradle.kts files ?

Sounds great 👍

@garyp
Copy link
Collaborator

garyp commented Mar 10, 2020

@sebleclerc I was able to get everything building (haven't tried actually running this code yet...) with a newer gradle version. First I ran ./gradlew wrapper --gradle-version=5.6.4 to update the version (5.6.4 is the latest release in the 5.x series). Then I made this slight patch to build.gradle:

diff --git a/build.gradle b/build.gradle
index 56e43cc..78828b5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -72,12 +72,12 @@ project(':runtime:runtime-js') {
 project(':runtime:runtime-jvm') {
     apply plugin: 'kotlin-platform-jvm'
     apply plugin: 'kotlinx-serialization'
-    sourceCompatibility = '1.6'
+    sourceCompatibility = '1.8'
     compileKotlin {
-        kotlinOptions.jvmTarget = '1.6'
+        kotlinOptions.jvmTarget = '1.8'
     }
     compileTestKotlin {
-        kotlinOptions.jvmTarget = '1.6'
+        kotlinOptions.jvmTarget = '1.8'
     }
     dependencies {
         expectedBy project(':runtime:runtime-common')

I think we should be ok updating the :runtime:runtime-jvm project to Java 8. From what I understand it was using Java 6 to maintain Android support. But as long as an Android project is using a recent-enough version of the Android gradle plugin (https://developer.android.com/studio/write/java8-support), it should be able to use pbandk even if pbandk was compiled against Java 8. I don't see a need to support ancient Android gradle plugin versions.

@garyp
Copy link
Collaborator

garyp commented Mar 10, 2020

I was also able to get everything to build (again, haven't tried running the code) with gradle 6.2.2 (the latest release in the 6.x series). If you're going to be changing the entire gradle project structure, you might as well update to gradle 6.2.2.

@sebleclerc
Copy link
Contributor Author

That is exactly what I’m doing right now. I’m fairly advanced right now. I hope to have a PR in the next day or 2

@sebleclerc
Copy link
Contributor Author

Oh and after updating Gradle I forgot to update wrapper 🤦‍♂️ that might be why it wasn’t working

@sebleclerc
Copy link
Contributor Author

You can see PR #29

@garyp garyp added this to the 1.0 milestone Apr 24, 2020
@garyp garyp added the enhancement New feature or request label Apr 24, 2020
@garyp garyp modified the milestones: 1.0, 0.9.0 Apr 29, 2020
garyp pushed a commit that referenced this issue Aug 10, 2020
Originally based on cretz/pb-and-k#15. This is a
rebase of #29 onto the latest version of master.

Fixes #19.
@garyp garyp closed this as completed in #76 Aug 10, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants