Skip to content

Commit

Permalink
V1.0.0 (#11)
Browse files Browse the repository at this point in the history
* Prepare for release

* Upgrade bintray plugin
  • Loading branch information
ziggy42 authored Feb 17, 2020
1 parent 553dfde commit 184f402
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright 2020 Andrea Pivetta

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,12 @@ Add jcenter:
```groovy
repositories {
jcenter()
...
}
```

Add dependency:
```groovy
dependencies {
compile "com.andreapivetta.kolor:kolor:0.0.2"
...
implementation "com.andreapivetta.kolor:kolor:1.0.0"
}
```
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id "java"
id "maven-publish"
id "com.jfrog.bintray" version "1.7.3"
id "com.jfrog.bintray" version "1.8.4"
id "org.jetbrains.kotlin.jvm" version "1.3.61"
}

def GROUP_ID = 'com.andreapivetta.kolor'
def ARTIFACT_ID = 'kolor'
def VERSION = '0.0.2'
def VERSION = '1.0.0'

group GROUP_ID
version VERSION
Expand All @@ -24,7 +24,7 @@ dependencies {
}

task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
archiveClassifier.set("sources")
from sourceSets.main.allSource
}

Expand Down

0 comments on commit 184f402

Please sign in to comment.