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

chore: release version 1.1.0 #101

Merged
merged 1 commit into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ updates:
open-pull-requests-limit: 10
target-branch: "development"
commit-message:
prefix: "build: "
prefix: "deps: "
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ jobs:
run: |
git checkout ${{ github.event.inputs.stableBranch }}
git checkout -B ${{ github.event.inputs.releaseBranch }}-bump
git merge -X theirs --squash ${{ github.event.inputs.releaseBranch }}
git checkout ${{ github.event.inputs.releaseBranch }}
git merge -s ours --no-edit ${{ github.event.inputs.stableBranch }}
git checkout ${{ github.event.inputs.releaseBranch }}-bump
git merge --squash ${{ github.event.inputs.releaseBranch }}
git commit -m "chore: release version ${{ github.event.inputs.version }}"
git push origin ${{ github.event.inputs.releaseBranch }}-bump
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
Expand Down
9 changes: 4 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/target
/local
target

# Eclipse, Netbeans and IntelliJ files
/.*
Expand All @@ -8,9 +7,9 @@
!.gitattributes
!/.mvn
/nbproject
/*.ipr
/*.iws
/*.iml
*.ipr
*.iws
*.iml

# Repository wide ignore mac DS_Store files
.DS_Store
2 changes: 0 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ a|* <<school-timetabling, School timetabling>>

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

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

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

Expand Down
13 changes: 0 additions & 13 deletions build/quickstarts-showcase/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion build/quickstarts-showcase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>ai.timefold.solver</groupId>
<artifactId>timefold-solver-quickstarts-parent</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
12 changes: 0 additions & 12 deletions hello-world/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion hello-world/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id "application"
}

def timefoldVersion = "1.0.0"
def timefoldVersion = "1.1.0"
def logbackVersion = "1.4.7"
def junitJupiterVersion = "5.9.0"
def assertjVersion = "3.24.2"
Expand Down
10 changes: 5 additions & 5 deletions hello-world/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jar.with.dependencies.name>hello-world-run</jar.with.dependencies.name>

<version.ai.timefold.solver>1.0.0</version.ai.timefold.solver>
<version.ai.timefold.solver>1.1.0</version.ai.timefold.solver>
<version.org.assertj>3.24.2</version.org.assertj>
<version.org.junit.jupiter>5.9.0</version.org.junit.jupiter>
<version.org.logback>1.4.7</version.org.logback>
<version.org.junit.jupiter>5.10.0</version.org.junit.jupiter>
<version.org.logback>1.4.11</version.org.logback>

<version.compiler.plugin>3.11.0</version.compiler.plugin>
<version.surefire.plugin>3.1.0</version.surefire.plugin>
<version.assembly.plugin>3.5.0</version.assembly.plugin>
<version.surefire.plugin>3.1.2</version.surefire.plugin>
<version.assembly.plugin>3.6.0</version.assembly.plugin>
</properties>

<dependencyManagement>
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ai.timefold.solver</groupId>
<artifactId>timefold-solver-build-parent</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<relativePath/>
</parent>
<!-- IMPORTANT: the individual quickstarts have no parent pom. -->
Expand All @@ -22,7 +22,6 @@
<modules>
<module>hello-world</module>
<module>technology/java-spring-boot</module>
<module>technology/java-activemq-quarkus</module>
<module>technology/kotlin-quarkus</module>
<module>use-cases/school-timetabling</module>
<module>use-cases/facility-location</module>
Expand Down
12 changes: 0 additions & 12 deletions technology/java-activemq-quarkus/.gitignore

This file was deleted.

142 changes: 0 additions & 142 deletions technology/java-activemq-quarkus/README.adoc

This file was deleted.

23 changes: 0 additions & 23 deletions technology/java-activemq-quarkus/broker-00.xml

This file was deleted.

12 changes: 0 additions & 12 deletions technology/java-activemq-quarkus/client/.gitignore

This file was deleted.

Loading
Loading