-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/migrate-airline-to-namespace
- Loading branch information
Showing
70 changed files
with
15,326 additions
and
16,136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file | ||
|
||
## 2.0.0 (TBD) | ||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* removed `structure` module | ||
* removed `book.translator` method, use `person.fullName` instead | ||
* removed `book.isbn` method, use `commerce.isbn` instead | ||
* removed `commerce.price` method, use `finance.amount` instead | ||
* removed `commerce.productId` method, use `string.alphanumeric` instead | ||
* removed `commerce.productRating` method, use `number.decimal` instead | ||
* removed `commerce.discountAmount` method, use `number.decimal` instead | ||
* removed `commerce.discountPercentage` method, use `number.decimal` instead | ||
* removed `commerce.orderNumber` method, use `string.numeric` instead | ||
* removed `commerce.discountCode` method, use `string.alphanumeric` instead | ||
* removed `git.author` method, use `person.fullName` instead | ||
* removed `helper.shuffle` method, use standard library shuffle instead | ||
* removed `person.middleName` method, use `person.firstName` instead | ||
* removed `weather.temperature` method, use `number.decimal` instead | ||
* removed `weather.pressure` method, use `number.decimal` instead | ||
* removed `weather.visibility` method, use `number.decimal` instead | ||
* removed `weather.windSpeed` method, use `number.decimal` instead | ||
* removed `weather.uvIndex` method, use `number.integer` instead | ||
* removed `weather.humidity` method, use `number.integer` instead | ||
* removed `weather.cloudCover` method, use `number.integer` instead | ||
|
||
* changed std::string to std::string_view in where possible | ||
|
||
### Features | ||
|
||
* added `Plant` module | ||
|
||
### Infra | ||
|
||
* added Conan package manager support | ||
* added support for GCC 12 | ||
* changed to link with fmt lib only if compiler does not support std::format |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,18 +84,5 @@ class Git | |
* @endcode | ||
*/ | ||
static std::string commitSha(unsigned length = 40); | ||
|
||
/** | ||
* @brief Returns a random author name and email. | ||
* | ||
* @param | ||
* | ||
* @returns Author. | ||
* | ||
* @code | ||
* Git::author // {Author.name = "Rachel McLaughlin", Author.email = "[email protected]"} | ||
* @endcode | ||
*/ | ||
static Author author(); | ||
}; | ||
} |
Oops, something went wrong.