Skip to content

Commit

Permalink
feat: make some cleanup after experiencing a real version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
e-picas committed Feb 4, 2024
1 parent 59ee76e commit 066589a
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 15 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/bump_version.yml
Expand Up @@ -50,12 +50,6 @@ jobs:
- name: Install composer dependencies
uses: php-actions/composer@v6

- name: Cat Finder file
run: cat vendor/symfony/finder/Finder.php

- name: Test make-phar
run: php bin/mde-dev --verbose --debug make-phar

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -176,7 +176,7 @@ gitflow-publish-release:
git push --delete origin ${CURRENT_BRANCH_NAME}
.PHONY: gitflow-publish-release

# This one is for hard dev and not documented ...
# The followings are for hard dev and not documented ...
docker-dev-build:
docker build \
-f $$(pwd)/docker/dev-full/Dockerfile \
Expand Down
2 changes: 1 addition & 1 deletion doc/DOCUMENTATION.md
Expand Up @@ -3,7 +3,7 @@ Man-name: markdown-extended-api
Section: 7
Author: Pierre Cassat
Date: 2024-02-04
Version: 0.1.0-dev
Version: 1.0.0-rc.9


NAME
Expand Down
2 changes: 1 addition & 1 deletion doc/MANPAGE.md
Expand Up @@ -2,7 +2,7 @@ Man: PHP-Markdown-Extended Manual
Man-name: markdown-extended
Author: Pierre Cassat
Date: 2024-02-04
Version: 0.1.0-dev
Version: 1.0.0-rc.9


## NAME
Expand Down
2 changes: 1 addition & 1 deletion src/MarkdownExtended/Console/Stream.php
Expand Up @@ -231,7 +231,7 @@ public function _exit($code = 0)
* @param \Exception $e
* @return void
*/
public function handleException($e)
public function handleException(\Exception $e)
{
if (self::VERBOSITY_DEBUG <= $this->getVerbosity()) {
$str = sprintf(
Expand Down
5 changes: 0 additions & 5 deletions src/MarkdownExtendedDev/Compiler.php
Expand Up @@ -33,11 +33,6 @@ class Compiler

public function getDefaultFinder()
{
$stream = new \MarkdownExtended\Console\Stream();
$stream->writeln(
sprintf('> creating a Compiler object in base path "%s"', $this->root_dir)
);

$finder = new Finder();
$finder->files()
->ignoreVCS(true)
Expand Down

0 comments on commit 066589a

Please sign in to comment.