Skip to content

Commit

Permalink
fix(ci): add mkdocs requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
hippothomas committed Jan 28, 2024
1 parent 9cbdc28 commit 2120234
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: MkDocs build
run: |
pip install mkdocs
pip install mkdocs mkdocs-material
mkdocs build
- uses: jsmrcaga/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ class Constants
* The current release version
* Follows the Semantic Versioning strategy: https://semver.org/
*/
public const string VERSION = '1.1.0';
public const string VERSION = '1.1.1';
/**
* The current release: major * 10000 + minor * 100 + patch
*/
public const int VERSION_ID = 10100;
public const int VERSION_ID = 10101;
/**
* Documentation URL
*/
Expand Down

0 comments on commit 2120234

Please sign in to comment.