Skip to content

Commit

Permalink
Merge pull request #1593 from INN/1590-tag-0.6.1
Browse files Browse the repository at this point in the history
Bump version number to 0.6.1 and run grunt tasks
  • Loading branch information
benlk committed Dec 7, 2018
2 parents 01a0977 + 35b952c commit d167efc
Show file tree
Hide file tree
Showing 17 changed files with 3,526 additions and 5,597 deletions.
36 changes: 2 additions & 34 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ module.exports = function(grunt) {
stdout: true
}
},
msmerge: {
msgmerge: {
command: [
'msgmerge -o lang/es_ES.po.merged lang/es_ES.po lang/largo.pot',
'mv lang/es_ES.po.merged lang/es_ES.po'
Expand Down Expand Up @@ -148,33 +148,6 @@ module.exports = function(grunt) {
src: 'lang/*.po',
expand: true
}
},

version: {
src: [
'package.json'
],
docs: {
src: [
'docs/conf.py'
]
},
css: {
options: {
prefix: 'Version: '
},
src: [
'style.css',
]
},
readme: {
options: {
prefix: '\\*\\*Current version:\\*\\* v'
},
src: [
'readme.md'
]
}
}
});

Expand All @@ -195,11 +168,6 @@ module.exports = function(grunt) {
'apidocs',
'docs',
'pot',
'shell:msmerge'
]);

// Increment version numbers and run a full build
grunt.registerTask('build-release', 'Increment version numbers (based on package.json) and run a full build', [
'version', 'build'
'shell:msgmerge'
]);
}
13 changes: 11 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,30 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
though this project doesn't succeed in adhering to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Largo 0.6.1
## [Largo 0.6.1](https://github.com/INN/largo/compare/v0.6...v0.6.1)

This release contains bugfixes for Largo 0.6.

### Changes

- Uses [`filemtime()`](https://secure.php.net/manual/en/function.filemtime.php) as the version number for more enqueued assets, meaning that cachebusting will be handled by file modification time and not by Largo version. [Pull Request #1575](https://github.com/INN/largo/pull/1575) for [issue #1550](https://github.com/INN/largo/issues/1550).
- For many assets where no version number was provided for enqueued assets, `largo_version()` is now used. [Pull Request #1575](https://github.com/INN/largo/pull/1575) for [issue #1550](https://github.com/INN/largo/issues/1550).
- For many assets where no version number was provided for enqueued assets, `largo_version()` is now used. [Pull Request #1575](https://github.com/INN/largo/pull/1575) for [issue #1550](https://github.com/INN/largo/issues/1550).
- Removes the list of recommended plugins displayed on new installations of Largo. [Pull Request #1580](https://github.com/INN/largo/pull/1580) for [issue #1570](https://github.com/INN/largo/issues/1570). We'll be bringing this list back in an updated form on an INN website; stay tuned.

### Fixes

- Updates templates to make sure that bylines are output. [Pull request #1574](https://github.com/INN/largo/pull/1574).
- Fixes a division-by-zero bug in avatar functions. [Pull request #1578](https://github.com/INN/largo/pull/1578) as part of [issue #1492](https://github.com/INN/largo/issues/1492).
- Allows the Largo Taxonomy List Widget to have an empty title. [Pull request #1583](https://github.com/INN/largo/pull/1583) for [issue #1581](https://github.com/INN/largo/issues/1581).
- Allows the Largo Recent Posts Widget to have an empty title. [Pull request #1588](https://github.com/INN/largo/pull/1588) for [issue #1405](https://github.com/INN/largo/issues/1405).
- Makes sure that the series, post type, and post prominence taxonomies appear in the REST API and in the Gutenberg editor. [Pull request #1586](https://github.com/INN/largo/pull/1586) for [issue #1582](https://github.com/INN/largo/issues/1582).

### Documentation and administrative improvements

- Lays groundwork for testing Largo under PHP 7.3. [Pull request #1587](https://github.com/INN/largo/pull/1587) for [issue #1579](https://github.com/INN/largo/issues/1579).
- Adds a pip `requirements.txt` for Sphinx dependencies required by Grunt tasks used during the development process. [Pull request #1585](https://github.com/INN/largo/pull/1585) for [issue #1359](https://github.com/INN/largo/issues/1359).
- Removes several unneccessary Grunt tasks from the Gruntfile, and their dependencies. [Pull request #1585](https://github.com/INN/largo/pull/1585) for [issue #1540](https://github.com/INN/largo/issues/1540).
- Removes some old developer setup instructions from the largo.readthedocs.io setup instructions. [Pull request #1585](https://github.com/INN/largo/pull/1585).

## [Largo 0.6](https://github.com/INN/largo/compare/v0.5.5.4...v0.6)

Expand Down
2 changes: 1 addition & 1 deletion css/editor-style.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/style.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@

# General information about the project.
project = u'Largo Project'
copyright = u'2014, Institute for Nonprofit News'
copyright = u'2018, Institute for Nonprofit News'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.6'
version = '0.6.1'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion docs/developers/grunt-commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Some commands require you to have external applications installed. Instructions
``shell:sphinx``
Converts all available reStructuredText files into HTML documentation, which is saved locally in ``docs/_build/html/``. If you want to preview these docs without pushing them to `largo.readthedocs.io <https://largo.readthedocs.io>`_, run ``python -m SimpleHTTPServer`` as described in `the documentation contribution instructions <setup-documentation.html#setting-up>`_.

``shell:msmerge``
``shell:msgmerge``
Runs `msgmerge <https://www.gnu.org/software/gettext/manual/html_node/msgmerge-Invocation.html>`_ to merge translation files.

``shell:pot``
Expand Down
2 changes: 1 addition & 1 deletion homepages/assets/css/single.min.css

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

2 changes: 1 addition & 1 deletion js/custom-term-icons.min.js

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

Loading

0 comments on commit d167efc

Please sign in to comment.