Skip to content

Commit

Permalink
docs(changelog): Add public API declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Jan 27, 2023
1 parent 6e4423b commit 7147b71
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Public API

The purpose of this section is to declare the public API of this library as required by [item 1 of semantic versioning specification](https://semver.org/spec/v2.0.0.html#spec-item-1).

The public API of this library consists of all public or protected methods, properties and constants belonging to
the following folders and files:
- `src/Configuration`
- `src/Storage`
- `src/ClientException.php`
- `src/Constants.php`
- `src/Signal.php`
- `src/Watcher.php`

---


## [1.0.1](https://github.com/crowdsecurity/php-capi-client/releases/tag/v1.0.1) - 2023-01-27
[_Compare with previous release_](https://github.com/crowdsecurity/php-capi-client/compare/v1.0.0...v1.0.1)

### Added

- Add public API declaration

---


## [1.0.0](https://github.com/crowdsecurity/php-capi-client/releases/tag/v1.0.0) - 2023-01-27
[_Compare with previous release_](https://github.com/crowdsecurity/php-capi-client/compare/v0.11.0...v1.0.0)

Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ class Constants
/**
* @var string The current version of this library
*/
public const VERSION = 'v1.0.0';
public const VERSION = 'v1.0.1';
}

0 comments on commit 7147b71

Please sign in to comment.