Skip to content

Commit f8e81e1

Browse files
committed
initial commit
0 parents  commit f8e81e1

2 files changed

Lines changed: 72 additions & 0 deletions

File tree

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
HELP.md
2+
target/
3+
!.mvn/wrapper/maven-wrapper.jar
4+
!**/src/main/**
5+
!**/src/test/**
6+
/gradle.properties
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
17+
### IntelliJ IDEA ###
18+
.idea
19+
*.iws
20+
*.iml
21+
*.ipr
22+
23+
### NetBeans ###
24+
/nbproject/private/
25+
/nbbuild/
26+
/dist/
27+
/nbdist/
28+
/.nb-gradle/
29+
build/
30+
31+
### VS Code ###
32+
.vscode/
33+
34+
### PROJECT ###
35+
logs/
36+
pom.xml.versionsBackup
37+
38+
### CUSTOM CONFIG ###
39+
.gradle
40+
.okhttpcache
41+
.travis/secret.gpg
42+
.travis/secret.gpg

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[![Build Status](https://travis-ci.org/ymind/gradle-semantic-gitlog.svg?branch=master)](https://travis-ci.org/ymind/gradle-semantic-gitlog)
2+
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/ymind/gradle-semantic-gitlog)](https://github.com/ymind/gradle-semantic-gitlog/releases)
3+
[![Maven Central](https://img.shields.io/maven-central/v/team.yi.gradle.plugin/gradle-semantic-gitlog)](https://search.maven.org/artifact/team.yi.gradle.plugin/gradle-semantic-gitlog)
4+
[![Semantic Versioning 2.0.0](https://img.shields.io/badge/Semantic%20Versioning-2.0.0-brightgreen)](https://semver.org/)
5+
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
6+
[![GitHub](https://img.shields.io/github/license/ymind/gradle-semantic-gitlog)](https://github.com/ymind/gradle-semantic-gitlog/blob/master/LICENSE)
7+
8+
# gradle-semantic-gitlog
9+
10+
A simple [Semantic Versioning](https://semver.org/) management tool based on [Conventional Commits](https://conventionalcommits.org).
11+
It automatically derive and manage version numbers and generate [angular-style](https://github.com/angular/angular/blob/master/CONTRIBUTING.md) change logs.
12+
13+
> The [CHANGELOG.md](https://github.com/ymind/gradle-semantic-gitlog/blob/master/CHANGELOG.md) of this project is automatically generated with this [template](https://github.com/ymind/gradle-semantic-gitlog/blob/master/config/gitlog/CHANGELOG.md.mustache).
14+
15+
## Usage
16+
17+
* [Quick Start](https://ymind.github.io/semantic-gitlog/#/en-us/with-gradle)
18+
* [Plugin Options](https://ymind.github.io/semantic-gitlog/#/en-us/components/gradle-semantic-gitlog/)
19+
20+
## Related community projects
21+
22+
* [semantic-commit](https://github.com/ymind/semantic-commit)
23+
* [semantic-gitlog](https://github.com/ymind/semantic-gitlog)
24+
* [maven-semantic-gitlog](https://github.com/ymind/maven-semantic-gitlog)
25+
* [semantic-version](https://github.com/skuzzle/semantic-version)
26+
* [git-changelog-lib](https://github.com/tomasbjerre/git-changelog-lib)
27+
28+
## License
29+
30+
This is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

0 commit comments

Comments
 (0)