Skip to content

Commit caf9646

Browse files
Bump version to 1.2.0
1 parent 9adf0d3 commit caf9646

File tree

6 files changed

+31
-70
lines changed

6 files changed

+31
-70
lines changed

.github/workflows/release.yaml renamed to .github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Release
22
on:
33
push:
4-
branches: [master, main, "feature/89"]
4+
branches: [master, main]
55
tags: ["*"]
66
jobs:
77
publish:
@@ -17,4 +17,4 @@ jobs:
1717
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
1818
PGP_SECRET: ${{ secrets.PGP_SECRET }}
1919
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
20-
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
20+
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
File renamed without changes.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,3 +209,6 @@ project/.bloop/*
209209
# End of https://www.gitignore.io/api/osx,sbt,java,linux,maven,scala,windows,intellij
210210
.bsp/
211211
.vscode/settings.json
212+
project/project/.bloop/bloop.settings.json
213+
.gitignore
214+
project/project/.bloop/darwin-build-build.json

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ In order to access to Darwin core functionalities add the core dependency to you
4444

4545
#### sbt
4646
```scala
47-
libraryDependencies += "it.agilelab" %% "darwin-core" % "1.2.0-SNAPSHOT"
47+
libraryDependencies += "it.agilelab" %% "darwin-core" % "1.2.0"
4848
```
4949
#### maven
5050
```xml
5151
<dependency>
5252
<groupId>it.agilelab</groupId>
5353
<artifactId>darwin-core_2.11</artifactId>
54-
<version>1.2.0-SNAPSHOT</version>
54+
<version>1.2.0</version>
5555
</dependency>
5656
```
5757

@@ -61,14 +61,14 @@ Then add the connector of your choice, either HBase:
6161

6262
#### sbt
6363
```scala
64-
libraryDependencies += "it.agilelab" %% "darwin-hbase-connector" % "1.2.0-SNAPSHOT"
64+
libraryDependencies += "it.agilelab" %% "darwin-hbase-connector" % "1.2.0"
6565
```
6666
#### maven
6767
```xml
6868
<dependency>
6969
<groupId>it.agilelab</groupId>
7070
<artifactId>darwin-hbase-connector_2.11</artifactId>
71-
<version>1.2.0-SNAPSHOT</version>
71+
<version>1.2.0</version>
7272
</dependency>
7373
```
7474

@@ -79,14 +79,14 @@ Or PostgreSql:
7979
### sbt
8080

8181
```scala
82-
libraryDependencies += "it.agilelab" %% "darwin-postgres-connector" % "1.2.0-SNAPSHOT"
82+
libraryDependencies += "it.agilelab" %% "darwin-postgres-connector" % "1.2.0"
8383
```
8484
#### maven
8585
```xml
8686
<dependency>
8787
<groupId>it.agilelab</groupId>
8888
<artifactId>darwin-postgres-connector_2.11</artifactId>
89-
<version>1.2.0-SNAPSHOT</version>
89+
<version>1.2.0</version>
9090
</dependency>
9191
```
9292

@@ -98,14 +98,14 @@ Or Rest
9898
### sbt
9999

100100
```scala
101-
libraryDependencies += "it.agilelab" %% "darwin-rest-connector" % "1.2.0-SNAPSHOT"
101+
libraryDependencies += "it.agilelab" %% "darwin-rest-connector" % "1.2.0"
102102
```
103103
#### maven
104104
```xml
105105
<dependency>
106106
<groupId>it.agilelab</groupId>
107107
<artifactId>darwin-rest-connector_2.11</artifactId>
108-
<version>1.2.0-SNAPSHOT</version>
108+
<version>1.2.0</version>
109109
</dependency>
110110
```
111111

@@ -120,14 +120,14 @@ Or Mock (only for test scenarios):
120120
### sbt
121121

122122
```scala
123-
libraryDependencies += "it.agilelab" %% "darwin-mock-connector" % "1.2.0-SNAPSHOT"
123+
libraryDependencies += "it.agilelab" %% "darwin-mock-connector" % "1.2.0"
124124
```
125125
#### maven
126126
```xml
127127
<dependency>
128128
<groupId>it.agilelab</groupId>
129129
<artifactId>darwin-mock-connector_2.11</artifactId>
130-
<version>1.2.0-SNAPSHOT</version>
130+
<version>1.2.0</version>
131131
</dependency>
132132
```
133133

@@ -139,14 +139,14 @@ Darwin can be used as a *facade* over confluent schema registry.
139139
### sbt
140140

141141
```scala
142-
libraryDependencies += "it.agilelab" %% "darwin-confluent-connector" % "1.2.0-SNAPSHOT"
142+
libraryDependencies += "it.agilelab" %% "darwin-confluent-connector" % "1.2.0"
143143
```
144144
#### maven
145145
```xml
146146
<dependency>
147147
<groupId>it.agilelab</groupId>
148148
<artifactId>darwin-confluent-connector_2.11</artifactId>
149-
<version>1.2.0-SNAPSHOT</version>
149+
<version>1.2.0</version>
150150
</dependency>
151151
```
152152

project/Settings.scala

Lines changed: 12 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,17 @@ object Settings {
6969
javacOptions ++= javacOptionsVersion(scalaVersion.value),
7070
scalacOptions ++= scalacOptionsVersion(scalaVersion.value),
7171
scalacOptions.in(Compile, doc) ++= scalaDocOptionsVersion(scalaVersion.value),
72-
useCoursier := false
72+
useCoursier := false,
73+
developers := List(
74+
Developer("amurgia", "Antonio Murgia", "antonio.murgia@agilelab.it", url("https://github.com/tmnd1991")),
75+
Developer("lpirazzini", "Lorenzo Pirazzini", "lorenzo.pirazzini@agilelab.it", url("https://github.com/SpyQuel")),
76+
Developer("rcoluccio", "Roberto Coluccio", "roberto.coluccio@agilelab.it", url("https://github.com/erond")),
77+
Developer("alatella", "Andrea Latella", "andrea.latella@agilelab.it", url("https://github.com/andr3a87")),
78+
Developer("cventrella", "Carlo Ventrella", "carlo.ventrella@agilelab.it", url("https://www.agilelab.it")),
79+
Developer("dicardi", "Davide Icardi", "davide.icardi@agilelab.it", url("https://github.com/davideicardi")),
80+
Developer("nbidotti", "Nicolò Bidotti", "nicolo.bidotti@agilelab.it", url("https://github.com/nicolobidotti")),
81+
Developer("andrea-rockt", "Andrea Fonti", "andrea.fonti@agilelab.it", url("https://github.com/andrea-rockt"))
82+
)
7383
)
7484

7585
val clouderaHadoopReleaseRepo = "cloudera" at "https://repository.cloudera.com/artifactory/cloudera-repos/"
@@ -91,8 +101,7 @@ object Settings {
91101
)
92102
}
93103

94-
lazy val commonSettings: Seq[Def.SettingsDefinition] = projectSettings ++ buildSettings ++ publishSettings ++
95-
scalastyleSettings
104+
lazy val commonSettings = projectSettings ++ buildSettings ++ scalastyleSettings
96105

97106
lazy val hbaseTestSettings: SettingsDefinition = {
98107
//enable resolution of transitive dependencies of jars containing tests
@@ -111,57 +120,4 @@ object Settings {
111120
lazy val notPublishSettings = Seq(skip in publish := true)
112121

113122
lazy val scalastyleSettings = Seq(scalastyleFailOnWarning := true)
114-
115-
lazy val publishSettings = Seq(
116-
pomExtra := <scm>
117-
<connection>
118-
scm:git:git://github.com/agile-lab-dev/darwin.git
119-
</connection>
120-
<url>
121-
https://github.com/agile-lab-dev/darwin
122-
</url>
123-
</scm>
124-
<developers>
125-
<developer>
126-
<id>amurgia</id>
127-
<name>Antonio Murgia</name>
128-
<email>antonio.murgia@agilelab.it</email>
129-
</developer>
130-
<developer>
131-
<id>lpirazzini</id>
132-
<name>Lorenzo Pirazzini</name>
133-
<email>lorenzo.pirazzini@agilelab.it</email>
134-
</developer>
135-
<developer>
136-
<id>rcoluccio</id>
137-
<name>Roberto Coluccio</name>
138-
<email>roberto.coluccio@agilelab.it</email>
139-
</developer>
140-
<developer>
141-
<id>alatella</id>
142-
<name>Andrea Latella</name>
143-
<email>andrea.latella@agilelab.it</email>
144-
</developer>
145-
<developer>
146-
<id>cventrella</id>
147-
<name>Carlo Ventrella</name>
148-
<email>carlo.ventrella@agilelab.it</email>
149-
</developer>
150-
<developer>
151-
<id>dicardi</id>
152-
<name>Davide Icardi</name>
153-
<email>davide.icardi@agilelab.it</email>
154-
</developer>
155-
<developer>
156-
<id>nbidotti</id>
157-
<name>Nicolò Bidotti</name>
158-
<email>nicolo.bidotti@agilelab.it</email>
159-
</developer>
160-
<developer>
161-
<id>andrea-rockt</id>
162-
<name>Andrea Fonti</name>
163-
<email>andrea.fonti@agilelab.it</email>
164-
</developer>
165-
</developers>
166-
)
167123
}

publish.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
22
export CI_RELEASE='clean;scalastyle;+test;+publishSigned;darwin-hbase2-connector/clean;darwin-hbase2-connector/scalastyle;+darwin-hbase2-connector/test;+darwin-hbase2-connector/publishSigned'
33
export CI_SNAPSHOT_RELEASE='clean;scalastyle;+test;+publish;darwin-hbase2-connector/clean;darwin-hbase2-connector/scalastyle;+darwin-hbase2-connector/test;+darwin-hbase2-connector/publish'
4+
ls -ail /home/runner/work/darwin/darwin/gnupg-1.4.23/
5+
ls -ail /home/runner/work/darwin/darwin/gnupg-1.4.23/g10/
46
sbt ci-release

0 commit comments

Comments
 (0)