Skip to content

Commit

Permalink
Merge pull request #36 from 10up/release/0.3.1
Browse files Browse the repository at this point in the history
Release/0.3.1
  • Loading branch information
dkotter authored Sep 5, 2024
2 parents 855316c + b26be2b commit 7a1b7ef
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 6 deletions.
22 changes: 22 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Directories to ignore
/.git
/.github
/.wordpress-org
/node_modules
/src
/tests

# Files to ignore
/.*
/CHANGELOG.md
/CODE_OF_CONDUCT.md
/composer.json
/composer.lock
/CONTRIBUTING.md
/CREDITS.md
/LICENSE.md
/package-lock.json
/package.json
/phpcs-compat.xml
/phpcs.xml
/README.md
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file, per [the Ke

## [Unreleased] - TBD

## [0.3.1] - 2024-09-05
**Initial plugin release on WordPress.org 🎉**

### Developer
- Add banner image to the `README.md` file (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#34](https://github.com/10up/embed-block-figma/pull/34)).

## [0.3.0] - 2024-08-29
### Added
- WordPress.org Playground preview (props [@thrijith](https://github.com/thrijith), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#29](https://github.com/10up/embed-block-figma/pull/29)).
Expand All @@ -29,6 +35,7 @@ All notable changes to this project will be documented in this file, per [the Ke
- Initial private plugin release.

[Unreleased]: https://github.com/10up/embed-block-figma/compare/trunk...develop
[0.3.1]: https://github.com/10up/embed-block-figma/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/10up/embed-block-figma/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/10up/embed-block-figma/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/10up/embed-block-figma/tree/v0.1.0
4 changes: 2 additions & 2 deletions embed-block-figma.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Embed Block for Figma
* Plugin URI: https://github.com/10up/embed-block-figma
* Description: Adds a Figma embed block to the WordPress Block Editor.
* Version: 0.3.0
* Version: 0.3.1
* Requires at least: 6.4
* Requires PHP: 7.4
* Author: 10up
Expand All @@ -21,7 +21,7 @@
use function TenUpToolkit\set_dist_url_path;

// Useful global constants.
define( 'FIGMA_BLOCK_VERSION', '0.3.0' );
define( 'FIGMA_BLOCK_VERSION', '0.3.1' );
define( 'FIGMA_BLOCK_URL', plugin_dir_url( __FILE__ ) );
define( 'FIGMA_BLOCK_PATH', plugin_dir_path( __FILE__ ) );
define( 'FIGMA_BLOCK_INC', FIGMA_BLOCK_PATH . 'includes/' );
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "embed-block-figma",
"version": "0.3.0",
"version": "0.3.1",
"description": "Adds a Figma embed block to the WordPress Block Editor.",
"homepage": "https://github.com/10up/embed-block-figma",
"license": "GPL-2.0-or-later",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: 10up, dkotter, jeffpaul
Tags: gutenberg, figma, embed, blocks, custom blocks
Tested up to: 6.6
Stable tag: 0.3.0
Stable tag: 0.3.1
License: GPL-2.0-or-later
License URI: https://spdx.org/licenses/GPL-2.0-or-later.html

Expand All @@ -29,6 +29,10 @@ Assuming it's a valid URL, the block will automatically fetch the Figma file and

== Changelog ==

= 0.3.1 - 2024-09-05 =

**Initial plugin release on WordPress.org 🎉**

= 0.3.0 - 2024-08-29 =

* **Added:** WordPress.org Playground preview (props [@thrijith](https://github.com/thrijith), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#29](https://github.com/10up/embed-block-figma/pull/29)).
Expand Down

0 comments on commit 7a1b7ef

Please sign in to comment.