Skip to content

Commit 7179fc5

Browse files
authored
Merge pull request #61 from onera/60-failure-of-release-on-central
60 failure of release on central
2 parents dfaaf1f + 5de213d commit 7179fc5

4 files changed

Lines changed: 20 additions & 24 deletions

File tree

build.sbt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,9 @@ lazy val commonSettings = Seq(
175175
"LGPL-2.1",
176176
url("https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html")
177177
),
178-
pomIncludeRepository := { _ => false },
179-
crossPaths := false,
180-
versionScheme := Some("early-semver"),
181178
scalaVersion := "3.3.5",
182179
sbtVersion := "1.11.2",
180+
versionScheme := Some("early-semver"),
183181
scalafixOnCompile := true,
184182
semanticdbEnabled := true,
185183
scalafmtOnCompile := true,

contributing.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,15 @@ sbt test
2525
```shell
2626
sbt test
2727
```
28+
6. Automatic linter and formatter are used during the compilation process.
29+
Please ensure that all modifications after the linting and formatting processes are pushed.
30+
To check please ensure that `isVersionStable` is true
2831

29-
6. Update the README.md with details of changes to the API or the analysis process.
30-
7. Increase the version numbers in any examples files, the README.md and the build.sbt to the new version that this
31-
Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/).
32-
33-
```scala
34-
//Change version in build.sbt
35-
version := "X.Y.Z"
32+
```shell
33+
sbt isVersionStable
3634
```
3735

38-
8. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
36+
7. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
3937
do not have permission to do that, you may request the second reviewer to merge it for you.
4038

4139
## Code of Conduct

src/main/scala/onera/pmlanalyzer/pml/model/configuration/Transaction.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@ object Transaction extends PMLNodeBuilder[Transaction] {
164164
* the transaction (not used for now)
165165
*/
166166
def apply(
167-
name:String,
168-
from: Transaction
169-
)(using
170-
info: ReflexiveInfo,
171-
map: PMLNodeMap[Transaction]
172-
): Transaction =
167+
name: String,
168+
from: Transaction
169+
)(using
170+
info: ReflexiveInfo,
171+
map: PMLNodeMap[Transaction]
172+
): Transaction =
173173
apply(UserTransactionId(Symbol(name)), from.iniTgt, from.sw)
174174
}

src/main/scala/onera/pmlanalyzer/pml/operators/Use.scala

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -178,13 +178,13 @@ object Use {
178178
* the link
179179
*/
180180
def write[B](
181-
b: Set[B]
182-
)(using
183-
p: Provided[B, Store],
184-
ev: Use[L, Store],
185-
line: Line,
186-
file: File
187-
): Set[(L, Store)] = use(
181+
b: Set[B]
182+
)(using
183+
p: Provided[B, Store],
184+
ev: Use[L, Store],
185+
line: Line,
186+
file: File
187+
): Set[(L, Store)] = use(
188188
b.stores
189189
)
190190

0 commit comments

Comments
 (0)