Skip to content

Commit 9cc3bf6

Browse files
timefold-releasetriceo
authored andcommitted
chore: release version 1.1.0
1 parent 1492dfa commit 9cc3bf6

File tree

71 files changed

+58
-2742
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+58
-2742
lines changed

.github/dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updates:
88
open-pull-requests-limit: 10
99
target-branch: "development"
1010
commit-message:
11-
prefix: "build: "
11+
prefix: "deps: "
1212
- package-ecosystem: "github-actions"
1313
directory: "/"
1414
schedule:

.github/workflows/release.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ jobs:
8383
run: |
8484
git checkout ${{ github.event.inputs.stableBranch }}
8585
git checkout -B ${{ github.event.inputs.releaseBranch }}-bump
86-
git merge -X theirs --squash ${{ github.event.inputs.releaseBranch }}
86+
git checkout ${{ github.event.inputs.releaseBranch }}
87+
git merge -s ours --no-edit ${{ github.event.inputs.stableBranch }}
88+
git checkout ${{ github.event.inputs.releaseBranch }}-bump
89+
git merge --squash ${{ github.event.inputs.releaseBranch }}
8790
git commit -m "chore: release version ${{ github.event.inputs.version }}"
8891
git push origin ${{ github.event.inputs.releaseBranch }}-bump
8992
gh pr create --reviewer triceo,ge0ffrey --base ${{ github.event.inputs.stableBranch }} --head ${{ github.event.inputs.releaseBranch }}-bump --title "chore: release version ${{ github.event.inputs.version }}" --body-file .github/workflows/release-pr-body-stable.md

.gitignore

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
/target
2-
/local
1+
target
32

43
# Eclipse, Netbeans and IntelliJ files
54
/.*
@@ -8,9 +7,9 @@
87
!.gitattributes
98
!/.mvn
109
/nbproject
11-
/*.ipr
12-
/*.iws
13-
/*.iml
10+
*.ipr
11+
*.iws
12+
*.iml
1413

1514
# Repository wide ignore mac DS_Store files
1615
.DS_Store

README.adoc

-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ a|* <<school-timetabling, School timetabling>>
2020

2121
a|* link:use-cases/school-timetabling/README.adoc[Quarkus] (Java, Maven or Gradle, Quarkus, H2)
2222
* link:technology/java-spring-boot/README.adoc[Spring Boot] (Java, Maven or Gradle, Spring Boot, H2)
23-
* link:technology/java-activemq-quarkus/README.adoc[ActiveMQ] (Java, ActiveMQ, Maven, Quarkus)
2423
* link:technology/kotlin-quarkus/README.adoc[Kotlin] (Kotlin, Maven, Quarkus, H2)
2524

2625
2+a|* <<timefold-solver-examples, Timefold examples (desktop)>>
@@ -59,7 +58,6 @@ image::build/quickstarts-showcase/src/main/resources/META-INF/resources/screensh
5958

6059
* link:use-cases/school-timetabling/README.adoc[Run quarkus-school-timetabling] (Java, Maven or Gradle, Quarkus, H2)
6160
* link:technology/java-spring-boot/README.adoc[Run spring-boot-school-timetabling] (Java, Maven or Gradle, Spring Boot, H2)
62-
* link:technology/java-activemq-quarkus/README.adoc[Run activemq-quarkus-school-timetabling] (Java, ActiveMQ, Maven, Quarkus)
6361
* link:technology/kotlin-quarkus/README.adoc[Run kotlin-quarkus-school-timetabling] (Kotlin, Maven, Quarkus, H2)
6462
* link:use-cases/vehicle-routing-capacity/README.adoc[Run quarkus-vehicle-routing-capacity] (Java, Maven or Gradle, Quarkus)
6563

build/quickstarts-showcase/.gitignore

-13
This file was deleted.

build/quickstarts-showcase/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>ai.timefold.solver</groupId>
77
<artifactId>timefold-solver-quickstarts-parent</artifactId>
8-
<version>1.0.0</version>
8+
<version>1.1.0</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

hello-world/.gitignore

-12
This file was deleted.

hello-world/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id "application"
44
}
55

6-
def timefoldVersion = "1.0.0"
6+
def timefoldVersion = "1.1.0"
77
def logbackVersion = "1.4.7"
88
def junitJupiterVersion = "5.9.0"
99
def assertjVersion = "3.24.2"

hello-world/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<jar.with.dependencies.name>hello-world-run</jar.with.dependencies.name>
1414

15-
<version.ai.timefold.solver>1.0.0</version.ai.timefold.solver>
15+
<version.ai.timefold.solver>1.1.0</version.ai.timefold.solver>
1616
<version.org.assertj>3.24.2</version.org.assertj>
17-
<version.org.junit.jupiter>5.9.0</version.org.junit.jupiter>
18-
<version.org.logback>1.4.7</version.org.logback>
17+
<version.org.junit.jupiter>5.10.0</version.org.junit.jupiter>
18+
<version.org.logback>1.4.11</version.org.logback>
1919

2020
<version.compiler.plugin>3.11.0</version.compiler.plugin>
21-
<version.surefire.plugin>3.1.0</version.surefire.plugin>
22-
<version.assembly.plugin>3.5.0</version.assembly.plugin>
21+
<version.surefire.plugin>3.1.2</version.surefire.plugin>
22+
<version.assembly.plugin>3.6.0</version.assembly.plugin>
2323
</properties>
2424

2525
<dependencyManagement>

pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ai.timefold.solver</groupId>
88
<artifactId>timefold-solver-build-parent</artifactId>
9-
<version>1.0.0</version>
9+
<version>1.1.0</version>
1010
<relativePath/>
1111
</parent>
1212
<!-- IMPORTANT: the individual quickstarts have no parent pom. -->
@@ -22,7 +22,6 @@
2222
<modules>
2323
<module>hello-world</module>
2424
<module>technology/java-spring-boot</module>
25-
<module>technology/java-activemq-quarkus</module>
2625
<module>technology/kotlin-quarkus</module>
2726
<module>use-cases/school-timetabling</module>
2827
<module>use-cases/facility-location</module>

technology/java-activemq-quarkus/.gitignore

-12
This file was deleted.

technology/java-activemq-quarkus/README.adoc

-142
This file was deleted.

technology/java-activemq-quarkus/broker-00.xml

-23
This file was deleted.

technology/java-activemq-quarkus/client/.gitignore

-12
This file was deleted.

0 commit comments

Comments
 (0)