Skip to content

Commit

Permalink
chore: update version file to 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Var7600 committed Dec 27, 2024
1 parent a458020 commit d964d8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions ConventionalCommits.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ The commit contains the following structural elements, to communicate intent to
1. **fix:** a commit of the *type* `fix` patches a bug in your codebase (this correlates with [`PATCH`](http://semver.org/#summary) in Semantic Versioning).
2. **feat:** a commit of the *type* `feat` introduces a new feature to the codebase (this correlates with [`MINOR`](http://semver.org/#summary) in Semantic Versioning).
3. **BREAKING CHANGE:** a commit that has a footer `BREAKING CHANGE:`, or appends a `!` after the type/scope, introduces a breaking API change (correlating with [`MAJOR`](http://semver.org/#summary) in Semantic Versioning). A BREAKING CHANGE can be part of commits of any *type*.
4.*types* other than `refactor:` means that you changed <b>src</b> code but unlike `feat` no tests broke and no lines lost coverage.
5. *types* other than `fix:` and `feat:` are allowed, for example recommends `build:``chore:``ci:``docs:``style:``perf:``test:`, and others.

4.*types* other than `refactor:` means that you changed <b>src</b> code but unlike `feat` no tests broke and no lines lost coverage.
4. *types* other than `fix:` and `feat:` are allowed, for example recommends `build:``chore:``ci:``docs:``style:``perf:``test:`, and others.

Additional types are not mandated by the Conventional Commits specification, and have no implicit effect in Semantic Versioning (unless they include a BREAKING CHANGE). A scope may be provided to a commit’s type, to provide additional contextual information and is contained within parenthesis, e.g., `feat(parser): add ability to parse arrays`.

Expand Down
4 changes: 1 addition & 3 deletions src/main/java/vhdlgenerator/generator/Port.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/**
* @file Port.java
* @author DOUDOU DIAWARA @see <a href="https://github.com/Var7600/VHDL-GENERATOR">Github Page</a>
* @version 0.0
* @version 0.1
*
* @section LICENSE
*
Expand Down Expand Up @@ -30,5 +29,4 @@
public record Port(String entity_name, String architecture_name, String generic_map, String input_port,
String in_data_type, String output_port, String out_data_type, String code_implementation)
{

}

0 comments on commit d964d8b

Please sign in to comment.