Skip to content

Commit

Permalink
- Removed obsolete GitHub Action
Browse files Browse the repository at this point in the history
- Updated CHANGELOG.md
- Updated README.md
  • Loading branch information
PavlosIsaris committed Jan 28, 2025
1 parent 47ee38e commit de10cc3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 49 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/update-changelog.yml

This file was deleted.

7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to `laravel-cookies-consent` will be documented in this file
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## v2.0.7 - UI Improvements for smaller screens - 2024-01-27

- Improved the UI design for smaller screens (phones & tablets)
- Fixed the width of the cookies container

## v2.0.0 - Major Release - GDPR & UI Improvements - 2024-10-10

The v2 of the Laravel Cookies Consent plugin has been released! 🎉🥳😍
Expand All @@ -25,7 +30,7 @@ This version includes some important changes and improvements, such as:
- Changed the background color of the "Allow all cookies" button, in order to be compliant with the GDPR rules
- Fixed the padding of the button texts

## v.1.1.2 - Portoguese Language v2
## v.1.1.2 - Portuguese Language v2

Added Portuguese Language corrections, thanks to
this [PR](https://github.com/scify/laravel-cookies-consent/commit/a0ce037cd3bc82ca95c52ff30d2bf07236bd8306)
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ php artisan vendor:publish \
--tag="cookies-consent-assets"
```

**Notice:** if a new version of the plugin has been released and you want to update the styles file, please make sure to use `--force` option, to overwrite the files.
**Notice:** if a new version of the plugin has been released and you want to update the styles file, please make sure to
use `--force` option, to overwrite the files.

By doing so, the assets files will be copied to `public/vendor/cookies_consent`.

Expand Down Expand Up @@ -435,6 +436,8 @@ After you have committed your changes, create a new git tag:
git tag -a vx.y.z -m "This is a nice tag name"
```
(for the `x.y.z` version number, follow the [Semantic Versioning](https://semver.org/) guidelines).
Then, push the tag:
```bash
Expand All @@ -446,9 +449,7 @@ Then, in the [GitHub Releases page](https://github.com/scify/laravel-cookies-con
That's it! Packagist will be updated automatically.
Also, the `.github/workflows/update-changelog.yml` GitHub action will run, and it will update the `CHANGELOG.md` file.
Make sure that you run `git pull` afterwards, to get the updates.
Also, don't forget to update the `CHANGELOG.md` file with the new version name, release date, and release notes.
## Credits
Expand Down
4 changes: 0 additions & 4 deletions configure.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,6 @@ function replaceForAllOtherOSes(): array {
remove_composer_deps(['spatie/laravel-ray']);
}

if (!$useUpdateChangelogWorkflow) {
safeUnlink(__DIR__ . '/.github/workflows/update-changelog.yml');
}

confirm('Execute `composer install` and run tests?') && run('composer install && composer test');

confirm('Let this script delete itself?', true) && unlink(__FILE__);

0 comments on commit de10cc3

Please sign in to comment.