Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiodekker committed Apr 3, 2023
1 parent 01dfb2e commit 928b502
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
tags:
- '*'

jobs:
split:
Expand All @@ -15,7 +17,9 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: "danharrin/[email protected]"

- if: "!startsWith(github.ref, 'refs/tags/')"
uses: "danharrin/[email protected]"
env:
GITHUB_TOKEN: ${{ secrets.MONOREPO_SPLITTER_PERSONAL_ACCESS_TOKEN }}
with:
Expand All @@ -25,3 +29,16 @@ jobs:
branch: '${{ github.ref_name }}'
user_name: "Publisher"
user_email: "[email protected]"

- if: "startsWith(github.ref, 'refs/tags/')"
uses: "danharrin/[email protected]"
env:
GITHUB_TOKEN: ${{ secrets.MONOREPO_SPLITTER_PERSONAL_ACCESS_TOKEN }}
with:
tag: '${{ github.ref_name }}'
package_directory: 'packages/${{ matrix.package }}'
repository_organization: 'claudiodekker'
repository_name: 'laravel-auth-${{ matrix.package }}'
branch: 'master'
user_name: "Publisher"
user_email: "[email protected]"
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ 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).

## [Unreleased](https://github.com/claudiodekker/laravel-auth/compare/v0.1.2...HEAD)
## [Unreleased](https://github.com/claudiodekker/laravel-auth/compare/v0.2.0...HEAD)

## [v0.2.0](https://github.com/claudiodekker/laravel-auth/compare/v0.1.2...v0.2.0) - 2023-04-03

### Added

Expand All @@ -17,21 +19,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Moved `claudiodekker/laravel-auth` v0.1.0 into this monorepo
- Moved `claudiodekker/laravel-auth-bladebones` v0.1.2 into this monorepo
- Updated this `CHANGELOG.md` to reflect previous non-monorepo releases
- Bladebones: Changed dependency from `claudiodekker/laravel-auth` to `claudiodekker/laravel-auth-core`
- Bladebones: Improved generator styling, as per Laravel Pint standards ([#23](https://github.com/claudiodekker/laravel-auth/pull/23))
- Core: Improved tests to use translations instead of string matches ([#23](https://github.com/claudiodekker/laravel-auth/pull/23))

### Fixed

- Core: Fixed timing-related test regression ([#23](https://github.com/claudiodekker/laravel-auth/pull/23))

## [v0.1.2](https://github.com/claudiodekker/laravel-auth-bladebones/compare/v0.1.2...v0.1.1) - 2022-11-30
## [v0.1.2](https://github.com/claudiodekker/laravel-auth/compare/v0.1.1...v0.1.2) - 2022-11-30

### Fixed

- Bladebones: Add Laravel Pint linting to scaffolding-created files ([#1](https://github.com/claudiodekker/laravel-auth-bladebones/pull/1))
- Bladebones: Fix imports on generated files ([#2](https://github.com/claudiodekker/laravel-auth-bladebones/pull/2))

## [v0.1.1](https://github.com/claudiodekker/laravel-auth/compare/v0.1.1...v0.1.0) - 2022-11-30
## [v0.1.1](https://github.com/claudiodekker/laravel-auth/compare/v0.1.0...v0.1.1) - 2022-11-30

### Fixed

Expand Down
20 changes: 0 additions & 20 deletions monorepo-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,7 @@
declare(strict_types=1);

use Symplify\MonorepoBuilder\Config\MBConfig;
use Symplify\MonorepoBuilder\Release\ReleaseWorker\AddTagToChangelogReleaseWorker;
use Symplify\MonorepoBuilder\Release\ReleaseWorker\PushNextDevReleaseWorker;
use Symplify\MonorepoBuilder\Release\ReleaseWorker\PushTagReleaseWorker;
use Symplify\MonorepoBuilder\Release\ReleaseWorker\SetCurrentMutualDependenciesReleaseWorker;
use Symplify\MonorepoBuilder\Release\ReleaseWorker\SetNextMutualDependenciesReleaseWorker;
use Symplify\MonorepoBuilder\Release\ReleaseWorker\TagVersionReleaseWorker;
use Symplify\MonorepoBuilder\Release\ReleaseWorker\UpdateBranchAliasReleaseWorker;
use Symplify\MonorepoBuilder\Release\ReleaseWorker\UpdateReplaceReleaseWorker;

return static function (MBConfig $mbConfig): void {
$mbConfig->packageDirectories([__DIR__.'/packages']);

// release workers - in order to execute
$mbConfig->workers([
UpdateReplaceReleaseWorker::class,
SetCurrentMutualDependenciesReleaseWorker::class,
AddTagToChangelogReleaseWorker::class,
TagVersionReleaseWorker::class,
PushTagReleaseWorker::class,
SetNextMutualDependenciesReleaseWorker::class,
UpdateBranchAliasReleaseWorker::class,
PushNextDevReleaseWorker::class,
]);
};
2 changes: 1 addition & 1 deletion packages/bladebones/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"php": "~8.1.0|~8.2.0",
"ext-json": "*",
"laravel/framework": "^9.33|^10.0",
"claudiodekker/laravel-auth-core": "^0.1.3"
"claudiodekker/laravel-auth-core": "^0.2.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
Expand Down

0 comments on commit 928b502

Please sign in to comment.