Skip to content

Commit

Permalink
Merge pull request #94 from bu-ist/release/1.3.1
Browse files Browse the repository at this point in the history
Release/1.3.1
  • Loading branch information
jdub233 committed Apr 23, 2021
2 parents befc212 + d20117d commit fd79fb3
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 156 deletions.
7 changes: 7 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/.wordpress-org
/.git
/.github
/node_modules

.distignore
.gitignore
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Directories
/.wordpress-org export-ignore
/.github export-ignore

# Files
/.gitattributes export-ignore
/.gitignore export-ignore
16 changes: 16 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Deploy to WordPress.org
on:
push:
tags:
- "*"
jobs:
tag:
name: New tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@stable
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
4 changes: 2 additions & 2 deletions bu-navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Author: Boston University (IS&T)
* Author URI: http://sites.bu.edu/web/
* Description: Provides alternative navigation elements designed for blogs with large page counts
* Version: 1.3.0
* Version: 1.3.1
* Text Domain: bu-navigation
* Domain Path: /languages
* License: GPL2+
Expand Down Expand Up @@ -91,7 +91,7 @@ class BU_Navigation_Plugin {
*
* @var string
*/
const VERSION = '1.3.0';
const VERSION = '1.3.1';

/**
* Plugin class constructor.
Expand Down
2 changes: 1 addition & 1 deletion 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": "bu-navigation",
"version": "1.3.0",
"version": "1.3.1",
"description": "Provides alternative navigation elements designed for blogs with large page counts",
"main": "bu-navigation.php",
"directories": {
Expand Down
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ Please see this page for the details:

## Changelog

### 1.3.1

* Adds Github action, and removes redundant code.

### 1.3.0

* Moves core methods to a [Composer package](https://github.com/bu-ist/bu-navigation-core-widget) that is then imported back into the plugin. This is to allow for other plugins to also import the core data and widget code.
Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ Please see this page for the details:

== Changelog ==

= 1.3.1 =

* Adds Github action, and removes redundant code.

= 1.3.0 =

* Moves core methods to a Composer package that is then imported back into the plugin. This is to allow for other plugins to also import the core data and widget code.
Expand Down
152 changes: 0 additions & 152 deletions templates/widget-form.php

This file was deleted.

0 comments on commit fd79fb3

Please sign in to comment.