Skip to content

Commit 9ae2bea

Browse files
authored
Merge pull request #13 from happyprime/fix/prep-initial-release
Prep 1.0.1 for initial wp.org release
2 parents c21e521 + 6d192c5 commit 9ae2bea

10 files changed

Lines changed: 743 additions & 550 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Update readme.txt and assets
2+
on:
3+
push:
4+
branches: [trunk]
5+
jobs:
6+
trunk:
7+
name: Push to trunk
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@master
11+
- name: WordPress.org plugin asset/readme update
12+
uses: 10up/action-wordpress-plugin-asset-update@stable
13+
env:
14+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
15+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}

.github/workflows/deploy-to-wp.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Deploy tagged release to WordPress.org
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
jobs:
7+
tag:
8+
name: New tag
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@master
12+
- name: WordPress Plugin Deploy
13+
uses: 10up/action-wordpress-plugin-deploy@stable
14+
env:
15+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
16+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@ Now, an individual site administrator can make changes to a navigation menu whil
8383

8484
## Changelog
8585

86+
### 1.0.1
87+
88+
* Update `@wordpress/scripts` dependency to 26.6.0.
89+
* Add POT file.
90+
* Initial wp.org release.
91+
8692
### 1.0.0
8793

8894
* Consolidate into one block: Network Template Part.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "happyprime/network-template-parts",
33
"description": "Render block template parts from the main site of a network.",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"type": "wordpress-plugin",
66
"license": "GPLv2-or-later",
77
"config": {
@@ -14,7 +14,7 @@
1414
"squizlabs/php_codesniffer": "3.*",
1515
"dealerdirect/phpcodesniffer-composer-installer": "*",
1616
"phpcompatibility/phpcompatibility-wp": "*",
17-
"sirbrillig/phpcs-variable-analysis": "^2.11",
17+
"sirbrillig/phpcs-variable-analysis": "^2",
1818
"wp-coding-standards/wpcs": "*"
1919
},
2020
"scripts": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Copyright (C) 2023 Happy Prime
2+
# This file is distributed under the same license as the Network Template Parts plugin.
3+
msgid ""
4+
msgstr ""
5+
"Project-Id-Version: Network Template Parts 1.0.0\n"
6+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/network-template-parts\n"
7+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8+
"Language-Team: LANGUAGE <LL@li.org>\n"
9+
"MIME-Version: 1.0\n"
10+
"Content-Type: text/plain; charset=UTF-8\n"
11+
"Content-Transfer-Encoding: 8bit\n"
12+
"POT-Creation-Date: 2023-06-07T21:26:38+00:00\n"
13+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14+
"X-Generator: WP-CLI 2.6.0\n"
15+
"X-Domain: network-template-parts\n"
16+
17+
#. Plugin Name of the plugin
18+
msgid "Network Template Parts"
19+
msgstr ""
20+
21+
#. Plugin URI of the plugin
22+
msgid "https://github.com/happyprime/network-template-parts/"
23+
msgstr ""
24+
25+
#. Description of the plugin
26+
msgid "Render template parts in a site or network context."
27+
msgstr ""
28+
29+
#. Author of the plugin
30+
msgid "Happy Prime"
31+
msgstr ""
32+
33+
#. Author URI of the plugin
34+
msgid "https://happyprime.co"
35+
msgstr ""
36+
37+
#: blocks/network-template-part/index.js:35
38+
#: build/network-template-part/index.js:1
39+
msgid "None"
40+
msgstr ""
41+
42+
#: blocks/network-template-part/index.js:48
43+
#: build/network-template-part/index.js:1
44+
msgid "Template part options"
45+
msgstr ""
46+
47+
#: blocks/network-template-part/index.js:54
48+
#: build/network-template-part/index.js:1
49+
msgid "Template part"
50+
msgstr ""
51+
52+
#: blocks/network-template-part/index.js:65
53+
#: build/network-template-part/index.js:1
54+
msgid "Context"
55+
msgstr ""
56+
57+
#: blocks/network-template-part/block.json
58+
#: build/network-template-part/block.json
59+
msgctxt "block title"
60+
msgid "Network Template Part"
61+
msgstr ""
62+
63+
#: blocks/network-template-part/block.json
64+
#: build/network-template-part/block.json
65+
msgctxt "block description"
66+
msgid "Render a template part in the context of a site or network."
67+
msgstr ""

0 commit comments

Comments
 (0)