Skip to content

Commit

Permalink
Split changelog file
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-craft committed Aug 22, 2023
1 parent afe1819 commit a0be1e2
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 43 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Changelog - Template

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

---

## πŸ“¦ [Template] - YYYY-MM-dd

### πŸ’Ž Added
for new features

### πŸ”§ Changed
for changes in existing functionality

### 🚧 Deprecated
for soon-to-be removed features

### πŸ—‘οΈ Removed
for now removed features

### 🐞 Fixed
for any bug fixes

### 🦺 Security
in case of vulnerabilities

---

### πŸ’‘ Ideas for future release
### ⛏️ Work in progress
15 changes: 15 additions & 0 deletions CHANGELOG-unreleased.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog - Unreleased

## πŸ“¦ [Unreleased]

### πŸ’‘ Ideas for future release

- `formatNumber(string): string` (replace '.' by ',')
- `removeWords`: remove list of words from a given string.
- `wordsToArray(string): string[]`: returns the words of a sentence in an array.
Example : `wordsToArray('Hello the world') => ['Hello', 'the', 'world']`.
- Case style:
- `camelCase`: convert string to camelCase.
- `upperCamelCase`: convert string to UpperCamelCase.
- `snakeCase`: convert string to snake_case.
- `kebabCase`: convert string to kebab-case.
43 changes: 0 additions & 43 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---


## πŸ“¦ [Unreleased]

### πŸ’‘ Ideas for future release

- `formatNumber(string): string` (replace '.' by ',')
- `removeWords`: remove list of words from a given string.
- `wordsToArray(string): string[]`: returns the words of a sentence in an array.
Example : `wordsToArray('Hello the world') => ['Hello', 'the', 'world']`.
- Case style:
- `camelCase`: convert string to camelCase.
- `upperCamelCase`: convert string to UpperCamelCase.
- `snakeCase`: convert string to snake_case.
- `kebabCase`: convert string to kebab-case.

---

## πŸ“¦ [2.2.0] - 2023-08-19

### 🐞 Fixed
Expand Down Expand Up @@ -83,29 +66,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `countWords`
- `isNumber` | `isNotNumber`

---

## πŸ“¦ [Template] - YYYY-MM-dd

### πŸ’Ž Added
for new features

### πŸ”§ Changed
for changes in existing functionality

### 🚧 Deprecated
for soon-to-be removed features

### πŸ—‘οΈ Removed
for now removed features

### 🐞 Fixed
for any bug fixes

### 🦺 Security
in case of vulnerabilities

---

### πŸ’‘ Ideas for future release
### ⛏️ Work in progress

0 comments on commit a0be1e2

Please sign in to comment.