Skip to content
This repository was archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
composer 2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
leevigraham committed Oct 27, 2020
1 parent 6eb2e0a commit 7f439dc
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project 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/).

## 1.0.0 - 2020.10.27
### Fixes
- Asset bundle namespace - Composer 2 support
- v1 bump to allow for composer updates

## 0.0.24 - 2020.09.14
### Fixes
- Changed: Autocomplete now fills in street address line 1 instead of 2.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "newism/craft3-fields",
"description": "Address, telephone and email fields for CraftCMS 3.x",
"type": "craft-plugin",
"version": "0.0.24",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @copyright Copyright (c) 2017 Leevi Graham
*/

namespace newism\fields\assetbundles\addressfield;
namespace newism\fields\assetbundles\AddressField;

use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @copyright Copyright (c) 2017 Leevi Graham
*/

namespace newism\fields\assetbundles\embedfield;
namespace newism\fields\assetbundles\EmbedField;

use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
Expand Down
2 changes: 1 addition & 1 deletion src/fields/Address.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
use craft\helpers\StringHelper;
use craft\web\View;
use JsonException;
use newism\fields\assetbundles\addressfield\AddressFieldAsset;
use newism\fields\assetbundles\AddressField\AddressFieldAsset;
use newism\fields\models\AddressModel;
use newism\fields\NsmFields;
use newism\fields\validators\JsonValidator;
Expand Down
2 changes: 1 addition & 1 deletion src/fields/Embed.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use craft\base\PreviewableFieldInterface;
use craft\helpers\StringHelper;
use craft\helpers\UrlHelper;
use newism\fields\assetbundles\embedfield\EmbedFieldAsset;
use newism\fields\assetbundles\EmbedField\EmbedFieldAsset;
use newism\fields\models\EmbedModel;
use newism\fields\NsmFields;
use RuntimeException;
Expand Down

0 comments on commit 7f439dc

Please sign in to comment.