diff --git a/CHANGELOG.md b/CHANGELOG.md index f4fbfcd..d425ebc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ -## UNRELEASED +# Changelog -* Initial release \ No newline at end of file +We use the GOV.UK versioning guidelines. +Mark breaking changes with BREAKING:. Be sure to include instructions on how applications should be upgraded. +Include a link to your pull request. +When adding a new banner to gov.uk page, release a minor version. +For typos, release a patch version. + +## 0.2.0 + +* Add configuration for "AI banner 11/11/2024" + +## 0.1.0 + +* Initial release diff --git a/Gemfile.lock b/Gemfile.lock index 359da1c..3175db6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - govuk_web_banners (0.1.0) + govuk_web_banners (0.2.0) govuk_publishing_components rails (>= 7) diff --git a/config/govuk_web_banners/recruitment_banners.yml b/config/govuk_web_banners/recruitment_banners.yml index 2172e23..e20adaa 100644 --- a/config/govuk_web_banners/recruitment_banners.yml +++ b/config/govuk_web_banners/recruitment_banners.yml @@ -1,5 +1,6 @@ # Example usage of adding a banner to the banners list + # banners: # - name: Banner 1 # suggestion_text: "Help improve GOV.UK" # suggestion_link_text: "Sign up to take part in user research (opens in a new tab)" @@ -14,4 +15,33 @@ # # Note that this file must contain a valid banners array, so if there are no banners # currently included, the file should at least contain banners: [] -banners: [] +banners: +- name: AI banner 11/11/2024 + suggestion_text: "Help improve GOV.UK" + suggestion_link_text: "Sign up to take part in user research (opens in a new tab)" + survey_url: https://survey.take-part-in-research.service.gov.uk/jfe/form/SV_2bggmg6xlelrO0S + page_paths: + # government frontend: + - /self-assessment-tax-returns + - /working-for-yourself + - /self-employed-records + - /expenses-if-youre-self-employed + - /first-company-accounts-and-return + - /what-is-the-construction-industry-scheme + - /capital-allowances + - /simpler-income-tax-cash-basis + - /expenses-and-benefits-a-to-z + - /capital-gains-tax + - /directors-loans + - /self-assessment-tax-return-forms + - /running-a-limited-company + - /calculate-tax-on-company-cars + - /introduction-to-business-rates + - /calculate-your-business-rates + - /apply-for-business-rate-relief + - /stop-being-self-employed + - /tax-codes + # finder-frontend: + - /business-finance-support + start_date: 11/11/2024 + end_date: 06/01/2025 diff --git a/lib/govuk_web_banners/version.rb b/lib/govuk_web_banners/version.rb index 03cbfdf..0e6e23b 100644 --- a/lib/govuk_web_banners/version.rb +++ b/lib/govuk_web_banners/version.rb @@ -1,3 +1,3 @@ module GovukWebBanners - VERSION = "0.1.0".freeze + VERSION = "0.2.0".freeze end