Skip to content

Commit 09eb596

Browse files
chore(release): 1.7.1 [skip ci]
## [1.7.1](v1.7.0...v1.7.1) (2020-06-09) ### Bug Fixes * always display query controls; disallow choosing 0 posts ([#497](#497)) ([b956111](b956111)) * correct order of arguments in implodes ([0f45074](0f45074)) * don't use main wp_query when rendering homepage posts ([9c804f6](9c804f6)) * reset postdata after restoring wp_query ([d9d01a6](d9d01a6)) * **homepage-posts:** exclude specific posts from other blocks from query ([#500](#500)) ([31181a5](31181a5)), closes [#498](#498) * make bottom margin styles less specific for easier overrides ([#483](#483)) ([93c3aff](93c3aff))
1 parent fa1a3b4 commit 09eb596

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [1.7.1](https://github.com/Automattic/newspack-blocks/compare/v1.7.0...v1.7.1) (2020-06-09)
2+
3+
4+
### Bug Fixes
5+
6+
* always display query controls; disallow choosing 0 posts ([#497](https://github.com/Automattic/newspack-blocks/issues/497)) ([b956111](https://github.com/Automattic/newspack-blocks/commit/b9561113e822530eec74e30ca4df2139515716ab))
7+
* correct order of arguments in implodes ([0f45074](https://github.com/Automattic/newspack-blocks/commit/0f45074216e939438165d2621e6152797164e1ec))
8+
* don't use main wp_query when rendering homepage posts ([9c804f6](https://github.com/Automattic/newspack-blocks/commit/9c804f60d37b85e1caa0dd5b22549d478623e1e1))
9+
* reset postdata after restoring wp_query ([d9d01a6](https://github.com/Automattic/newspack-blocks/commit/d9d01a664b7a1132bf67b1c5f49fed965b763fee))
10+
* **homepage-posts:** exclude specific posts from other blocks from query ([#500](https://github.com/Automattic/newspack-blocks/issues/500)) ([31181a5](https://github.com/Automattic/newspack-blocks/commit/31181a5536aef03779cf789d2dcd4d9de05b4371)), closes [#498](https://github.com/Automattic/newspack-blocks/issues/498)
11+
* make bottom margin styles less specific for easier overrides ([#483](https://github.com/Automattic/newspack-blocks/issues/483)) ([93c3aff](https://github.com/Automattic/newspack-blocks/commit/93c3aff087f30c955591770f514094604f0bc829))
12+
113
# [1.7.0](https://github.com/Automattic/newspack-blocks/compare/v1.6.0...v1.7.0) (2020-06-02)
214

315

newspack-blocks.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* Author URI: https://newspack.blog/
88
* Text Domain: newspack-blocks
99
* Domain Path: /languages
10-
* Version: 1.7.0
10+
* Version: 1.7.1
1111
*
1212
* @package Newspack_Blocks
1313
*/
1414

1515
define( 'NEWSPACK_BLOCKS__BLOCKS_DIRECTORY', 'dist/' );
1616
define( 'NEWSPACK_BLOCKS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
17-
define( 'NEWSPACK_BLOCKS__VERSION', '1.7.0' );
17+
define( 'NEWSPACK_BLOCKS__VERSION', '1.7.1' );
1818

1919
require_once NEWSPACK_BLOCKS__PLUGIN_DIR . 'class-newspack-blocks.php';
2020
require_once NEWSPACK_BLOCKS__PLUGIN_DIR . 'class-newspack-blocks-api.php';

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "newspack-blocks",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"main": "Gruntfile.js",
55
"author": "Automattic",
66
"devDependencies": {

0 commit comments

Comments
 (0)