Skip to content

Commit

Permalink
Merge pull request #37 from openeuropa/release-2.0.0
Browse files Browse the repository at this point in the history
Release-2.0.0: Update changlog.
  • Loading branch information
nagyad authored Feb 15, 2024
2 parents f7ff646 + 5bfd9b4 commit 8dbffe3
Show file tree
Hide file tree
Showing 18 changed files with 35 additions and 19 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,28 @@
# Change Log
# Changelog

## [2.0.0](https://github.com/openeuropa/oe_corporate_countries/tree/2.0.0) (2024-02-15)

[Full Changelog](https://github.com/openeuropa/oe_corporate_countries/compare/2.0.0-alpha8...2.0.0)

**Closed issues:**

- unable to enable oe\_content\_event [\#28](https://github.com/openeuropa/oe_corporate_countries/issues/28)

**Merged pull requests:**

- EWPP-3973: Add Drupal 10.2.x and PHP 8.2 to matrix. [\#36](https://github.com/openeuropa/oe_corporate_countries/pull/36) ([brummbar](https://github.com/brummbar))

## [2.0.0-alpha8](https://github.com/openeuropa/oe_corporate_countries/tree/2.0.0-alpha8) (2023-04-06)

## [2.0.0-alpha8](https://github.com/openeuropa/oe_corporate_countries/tree/2.0.0-alpha8) (2023-04-05)
[Full Changelog](https://github.com/openeuropa/oe_corporate_countries/compare/2.0.0-alpha7...2.0.0-alpha8)

**Merged pull requests:**

- Prepare changelog for release 2.0.0-alpha8. [\#35](https://github.com/openeuropa/oe_corporate_countries/pull/35) ([brummbar](https://github.com/brummbar))
- EWPP-3002: Drupal 10 compatibility. [\#34](https://github.com/openeuropa/oe_corporate_countries/pull/34) ([brummbar](https://github.com/brummbar))

## [2.0.0-alpha7](https://github.com/openeuropa/oe_corporate_countries/tree/2.0.0-alpha7) (2023-03-13)

[Full Changelog](https://github.com/openeuropa/oe_corporate_countries/compare/2.0.0-alpha6...2.0.0-alpha7)

**Merged pull requests:**
Expand All @@ -17,6 +32,7 @@
- OEL-2115: Update to PHP 8.1 [\#29](https://github.com/openeuropa/oe_corporate_countries/pull/29) ([brummbar](https://github.com/brummbar))

## [2.0.0-alpha6](https://github.com/openeuropa/oe_corporate_countries/tree/2.0.0-alpha6) (2022-08-09)

[Full Changelog](https://github.com/openeuropa/oe_corporate_countries/compare/2.0.0-alpha5...2.0.0-alpha6)

**Merged pull requests:**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Contains module hooks.
*/

declare(strict_types = 1);
declare(strict_types=1);

/**
* Implements hook_field_info_alter().
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_corporate_countries_address\EventSubscriber;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_corporate_countries_address;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_corporate_countries_address\Repository;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_corporate_countries_address\Kernel;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_corporate_countries_address\Kernel;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_corporate_countries_address\Kernel;

Expand Down
2 changes: 1 addition & 1 deletion oe_corporate_countries.install
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Install, update and uninstall functions for oe_corporate_countries module.
*/

declare(strict_types = 1);
declare(strict_types=1);

use Drupal\Core\Entity\EntityDefinitionUpdateManager;
use Drupal\Core\Field\BaseFieldDefinition;
Expand Down
2 changes: 1 addition & 1 deletion oe_corporate_countries.module
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
* OpenEuropa module.
*/

declare(strict_types = 1);
declare(strict_types=1);
2 changes: 1 addition & 1 deletion src/CorporateCountryRepository.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_corporate_countries;

Expand Down
2 changes: 1 addition & 1 deletion src/CorporateCountryRepositoryInterface.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_corporate_countries;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/ConceptSubset/NonDeprecatedCountries.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_corporate_countries\Plugin\ConceptSubset;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_corporate_countries\Plugin\Validation\Constraint;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\oe_corporate_countries\Plugin\Validation\Constraint;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Kernel/CorporateCountriesRdfKernelTestBase.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_corporate_countries\Kernel;

Expand Down
2 changes: 1 addition & 1 deletion tests/src/Kernel/CorporateCountryRepositoryTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_corporate_countries\Kernel;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace Drupal\Tests\oe_corporate_countries\Unit\Constraint;

Expand Down

0 comments on commit 8dbffe3

Please sign in to comment.