Skip to content

Commit

Permalink
release: 1.0.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.0.1](v1.0.0...v1.0.1) (2023-09-27)

### 📝 Documentation Updates

* update README to include contributing ([50b2698](50b2698))

### 🐛 Bug Fixes

* pre-commit failing due to not ignoring generated files ([b5e9e0f](b5e9e0f))
  • Loading branch information
semantic-release-bot committed Sep 27, 2023
1 parent b5e9e0f commit 9e985eb
Show file tree
Hide file tree
Showing 4 changed files with 155 additions and 2 deletions.
12 changes: 12 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## [1.0.1](https://github.com/AtomiCloud/sulfoxide.carbon/compare/v1.0.0...v1.0.1) (2023-09-27)


### 📝 Documentation Updates

* update README to include contributing ([50b2698](https://github.com/AtomiCloud/sulfoxide.carbon/commit/50b2698a382e22f90656c7b640e4284c5fe600ee))


### 🐛 Bug Fixes

* pre-commit failing due to not ignoring generated files ([b5e9e0f](https://github.com/AtomiCloud/sulfoxide.carbon/commit/b5e9e0f7293eca7099d2fdc160af391e345dbe8c))

## 1.0.0 (2023-09-26)


Expand Down
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: atomi-app-of-apps
description: AtomiCloud Cluster Bootstrap Engine
type: application
version: 1.0.0
version: 1.0.1
appVersion: "0.1.0"
2 changes: 1 addition & 1 deletion chart/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# atomi-app-of-apps

![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)
![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)

AtomiCloud Cluster Bootstrap Engine

Expand Down
141 changes: 141 additions & 0 deletions docs/developer/CommitConventions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
---
id: commit-conventions
title: Commit Conventions
---
This project uses [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) loosely as the specification
for our commits.

Commit message will be in the format:

```
type(scope): title
body
```

This page will document the types and scopes used.

# Types

| Type | Description |
| --------------------- | --------------------------------------------------- |
| [upstream](#upstream) | Changes from dependencies upstream |
| [config](#config) | Changes to configuration files and scripts |
| [release](#release) | Initiate a release (machine initiated) |
| [docs](#docs) | Documentation only changes |
| [feat](#feat) | A new feature |
| [action](#action) | Imperative action, mainly changing the values files |
| [fix](#fix) | A bug fix |
| [chore](#chore) | Menial Tasks |

## upstream

Changes from dependencies upstream

| **V.A.E** | V.A.E values |
| --------------- | ------------------------------------------------------------------------------------- |
| verb | update upstream |
| application | when this commit is applied, it will _update upstream_ `<scope>, <title>` |
| example | upstream(mysql): from v5.7 to v8.0 |
| example applied | when this commit is applied, it will _update upstream_ `mysql`, **from v5.7 to v8.0** |

| Scope | Description | Bump |
| ------- | ----------------------------------------- | ------- |
| default | Generic update from upstream dependencies | `minor` |

## config

Changes to configuration files and scripts

| **V.A.E** | V.A.E values |
| --------------- | --------------------------------------------------------------------------------------- |
| verb | configure |
| application | when this commit is applied, it will _configure_ `<scope> to <title>` |
| example | config(ci): setup nix before executing |
| example applied | when this commit is applied, it will _configure_ `ci` to **setup nix before executing** |

| Scope | Description | Bump |
| -------- | ---------------------------------------------------------------------------- | ----- |
| default | Updates the configuration of the repository, not related to the other scopes | `nil` |
| `lint` | Add, update or remove linters | `nil` |
| `fmt` | Add, updatge or remove formatters | `nil` |
| `build` | Add, update or change build pipelines and generators | `nil` |
| `nix` | Add, update or change nix shell | `nil` |
| `env` | Add, update or change environment | `nil` |
| `ignore` | Add, update or change ignore configurations | `nil` |
| `ci` | Add, update or change CI configuration files | `nil` |

## release

Initiate a release (machine initiated)

| Scope | Description | Bump |
| ------- | ------------------------- | ----- |
| default | Machine initiated release | `nil` |

## docs

Documentation only changes

| **V.A.E** | V.A.E values |
| --------------- | ------------------------------------------------------------------------------------------------------------ |
| verb | add |
| application | when this commit is applied, it will _add_ `<scope> documention <title>` |
| example | docs(developer): on how to install dependency packages |
| example applied | when this commit is applied, it will _add_ `developer` documention **on how to install dependency packages** |

| Scope | Description | Bump |
| ------- | --------------------------------- | ----- |
| default | Update generic documentation file | `nil` |

## feat

A new feature

| **V.A.E** | V.A.E values |
| --------------- | ----------------------------------------------------------------------- |
| verb | add |
| application | when this commit is applied, it will _add_ `<scope> <title>` |
| example | feat(rapid): new withdraw api |
| example applied | when this commit is applied, it will _add_ `rapid` **new withdraw api** |

| Scope | Description | Bump |
| ------- | ---------------------- | ------- |
| default | Release a new features | `minor` |

## action

Imperative action, mainly changing the values files

| Scope | Description | Bump |
| ------- | --------------------------------------------------- | ----- |
| default | Imperative action, mainly changing the values files | `nil` |

## fix

A bug fix

| **V.A.E** | V.A.E values |
| --------------- | -------------------------------------------------------------------- |
| verb | fix |
| application | when this commit is applied, it will _fix_ `<title>` |
| example | fix(rapid): deposit api for rapid |
| example applied | when this commit is applied, it will _fix_ **deposit api for rapid** |

| Scope | Description | Bump |
| ------- | ------------- | ------- |
| default | Generic fixes | `patch` |

## chore

Menial Tasks

| Scope | Description | Bump |
| ------- | ------------ | ----- |
| default | Menial Tasks | `nil` |

# Special Scopes

| Scope | Description | Bump |
| ------------ | ------------------------------ | ----- |
| `no-release` | Prevent release from happening | `nil` |

0 comments on commit 9e985eb

Please sign in to comment.