Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# 1.0.0 (2021-12-11)

### Bug Fixes

* **ci:** avoid setup husky for ci ([6c2217d](6c2217d))
* **ci:** avoid using credentials from checkout action in build workflow ([b1b6d34](b1b6d34))
* **ci:** upgrade setup-node version ([54afec9](54afec9))
* **ci:** use correct directory for make command ([26882d5](26882d5))

### Features

* add club entity ([#6](#6)) ([bbac4de](bbac4de))
* add first entity ([#1](#1)) ([a931fb8](a931fb8))
* db creation ([e95c657](e95c657))
  • Loading branch information
semantic-release-bot committed Dec 11, 2021
1 parent b1b6d34 commit 7a7ac2f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
16 changes: 16 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# 1.0.0 (2021-12-11)


### Bug Fixes

* **ci:** avoid setup husky for ci ([6c2217d](https://github.com/Thomgrus/judoclub/commit/6c2217de4c09cd542d181c10ba251d43e8b3f79f))
* **ci:** avoid using credentials from checkout action in build workflow ([b1b6d34](https://github.com/Thomgrus/judoclub/commit/b1b6d34973dd91d2ddef690173ffcb22f4375d0f))
* **ci:** upgrade setup-node version ([54afec9](https://github.com/Thomgrus/judoclub/commit/54afec9e98e949332cb15efcd9259f629effdf4c))
* **ci:** use correct directory for make command ([26882d5](https://github.com/Thomgrus/judoclub/commit/26882d5c6ba86db09c1599f4b8112fc5348cebe7))


### Features

* add club entity ([#6](https://github.com/Thomgrus/judoclub/issues/6)) ([bbac4de](https://github.com/Thomgrus/judoclub/commit/bbac4de822863ec24063cf1ed1e8c3b17ef5b29d))
* add first entity ([#1](https://github.com/Thomgrus/judoclub/issues/1)) ([a931fb8](https://github.com/Thomgrus/judoclub/commit/a931fb84c8190fe77fae3bdf52565cc98951ad12))
* db creation ([e95c657](https://github.com/Thomgrus/judoclub/commit/e95c65743ae96cd83f3b17542a100c780d6359fb))
9 changes: 4 additions & 5 deletions server/pom.xml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.0</version>
<relativePath/> <!-- lookup parent from repository -->
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>cloud.gruson.judoclub</groupId>
<artifactId>server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<name>server</name>
<description>Gestion des adhérents du judoclub</description>
<properties>
<java.version>17</java.version>
<repackage.classifier/>
<repackage.classifier />

<spring-native.version>0.11.0-RC1</spring-native.version>
<jacoco.version>0.8.7</jacoco.version>
Expand Down

0 comments on commit 7a7ac2f

Please sign in to comment.