Skip to content

Commit a57a0c3

Browse files
authored
Merge pull request #4 from Automattic/release/1.0.1
2 parents 30f2d87 + 4b6aa8a commit a57a0c3

File tree

12 files changed

+717
-158
lines changed

12 files changed

+717
-158
lines changed

.distignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/.distignore
2+
/.editorconfig
3+
/.git
4+
/.gitignore
5+
/.github
6+
/.phpcs.xml.dist
7+
/composer.json
8+
/package.json
9+
/package-lock.json
10+
/phpunit.xml.dist
11+
/tests

.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# It is based on https://core.trac.wordpress.org/browser/trunk/.editorconfig
3+
# See https://editorconfig.org for more information about the standard.
4+
5+
# WordPress Coding Standards
6+
# https://make.wordpress.org/core/handbook/coding-standards/
7+
8+
root = true
9+
10+
[*]
11+
charset = utf-8
12+
end_of_line = lf
13+
insert_final_newline = true
14+
trim_trailing_whitespace = true
15+
indent_style = tab
16+
17+
[*.yml]
18+
indent_style = space
19+
indent_size = 2
20+
21+
[*.md]
22+
trim_trailing_whitespace = false
23+
24+
[*.txt]
25+
end_of_line = crlf

.gitattributes

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Exclude these files from release archives.
2+
# This will also make them unavailable when using Composer with `--prefer-dist`.
3+
# If you develop for CAP using Composer, use `--prefer-source`.
4+
# https://blog.madewithlove.be/post/gitattributes/
5+
6+
/.github/ export-ignore
7+
/tests/ export-ignore
8+
/.distignore export-ignore
9+
/.editorconfig export-ignore
10+
/.gitattributes export-ignore
11+
/.gitignore export-ignore
12+
/.phpcs.xml.dist export-ignore
13+
/phpunit.xml.dist export-ignore
14+
/CHANGELOG.md export-ignore
15+
16+
# Auto detect text files and perform LF normalization
17+
# https://pablorsk.medium.com/be-a-git-ninja-the-gitattributes-file-e58c07c9e915
18+
19+
* text=auto
20+
21+
# The above will handle all files NOT found below
22+
23+
*.md text
24+
*.php text
25+
*.inc text

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/.phpunit.cache/
2+
/phpunit.xml
3+
/node_modules/
4+
/vendor/
5+
/.phpcs.xml
6+
/phpcs.xml
7+
/composer.lock

.phpcs.xml.dist

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0"?>
2+
<ruleset name="WordPress Coding Standards for Plugins">
3+
<description>Generally-applicable sniffs for WordPress plugins</description>
4+
5+
<rule ref="WordPress-VIP-Go" />
6+
7+
<!-- Rules: WordPress Coding Standards - see
8+
https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards -->
9+
<rule ref="WordPress-Extra"/> <!-- Includes WordPress-Core -->
10+
<rule ref="WordPress-Docs"/>
11+
<!-- For help in understanding this minimum_supported_wp_version:
12+
https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/wiki/Customizable-sniff-properties#setting-minimum-supported-wp-version-for-all-sniffs-in-one-go-wpcs-0140 -->
13+
<config name="minimum_supported_wp_version" value="4.4.2"/>
14+
15+
<rule ref="WordPress.WP.I18n">
16+
<properties>
17+
<property name="text_domain" type="array">
18+
<element value="buddypress-vip-go"/>
19+
</property>
20+
</properties>
21+
</rule>
22+
23+
<rule ref="PHPCompatibilityWP"/>
24+
<config name="testVersion" value="8.1-"/>
25+
26+
<!-- How to scan -->
27+
<arg value="sp"/> <!-- Show sniff and progress -->
28+
<arg name="colors"/> <!-- Show results with colors. Disable if working on Windows -->
29+
<arg name="basepath" value="."/> <!-- Strip the file paths down to the relevant bit -->
30+
<arg name="parallel" value="8"/> <!-- Enables parallel processing when available for faster results -->
31+
<arg name="extensions" value="php"/> <!-- Limit to PHP files -->
32+
33+
<!-- Allow invoking just `phpcs` on command line without assuming STDIN for file input. -->
34+
<file>.</file>
35+
36+
<exclude-pattern>*/node_modules/*</exclude-pattern>
37+
<exclude-pattern>*/vendor/*</exclude-pattern>
38+
</ruleset>

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
9+
## [1.0.1] - 2025-04-29
10+
11+
### Fixed
12+
- Cover image metadata fatal if groups component is not active by @GaryJones in https://github.com/Automattic/BuddyPress-VIP-Go/pull/1
13+
14+
### Changed
15+
- Improve documentation by @GaryJones in https://github.com/Automattic/BuddyPress-VIP-Go/pull/2
16+
17+
## Maintenance
18+
- Add development files and update code standards by @GaryJones in https://github.com/Automattic/BuddyPress-VIP-Go/pull/3
19+
- Registered on Packagist: https://packagist.org/packages/automattic/buddypress-vip-go
20+
21+
## 1.0.0 - 2016-04-22
22+
23+
### Added
24+
- Initial release of BuddyPress for VIP Go
25+
26+
[1.0.1]: https://github.com/automattic/buddypress-vip-go/compare/1.0.0...1.0.1

0 commit comments

Comments
 (0)