Skip to content

Commit

Permalink
Merge pull request #34 from aaemnnosttv/release/0.12.0
Browse files Browse the repository at this point in the history
Release v0.12.0
  • Loading branch information
aaemnnosttv authored Mar 2, 2018
2 parents 77d3c85 + 6476eca commit 402243d
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 9 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Release Notes

## v0.12.0 (2018-03-02)

### Added
- [Query scopes](https://github.com/aaemnnosttv/silk/issues/24) for model queries
- [Soft `Model::find(id)` retrieval method](https://github.com/aaemnnosttv/silk/issues/25)
- `\Silk\Silk::VERSION` Version constant

## Changed
- Raised minimum PHP version to 5.6
- [Updated `tightenco/collect` Collection library](https://github.com/aaemnnosttv/silk/issues/27)
**_Breaking change from previous version with some methods_** (see issue)
- [Removed deprecated methods](https://github.com/aaemnnosttv/silk/issues/28) **Breaking Change**
- `Silk\Post\Model::fromWpPost`
- `Silk\Term\Model::fromWpTerm`
- Removed `Silk\Contracts\Query\BuildsQueries` interface

## v0.11.1 (2016-30-08)

### Changed
Expand Down
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ A modern API for WordPress.

Use with confidence, upgrade with care.

--

## What is Silk?

Silk is a library designed as a thin layer on top of WordPress, abstracting away the mess of functions into a clean and expressive object-oriented API. Use as much or little as you want, while maintaining compatibility with everything else that's meant to work with WordPress.
Expand All @@ -33,10 +31,3 @@ composer require silk/silk
## Contributing

Contributions are welcome! If you're interested in contributing to the project, please open an issue first. I would hate to decline a Pull Request forged by hours of effort for any reason, so please read the contribution guidelines first.

#### Related Projects and Inspiration
- [Laravel](https://laravel.com)
- [Timber](https://github.com/jarednova/timber)
- [Corcel](https://github.com/jgrossi/corcel)
- [WordPlate](https://github.com/wordplate/wordplate)
- [WP Eloquent](https://github.com/tareq1988/wp-eloquent)
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
"psr-4": {"Silk\\":"src"},
"files": ["src/functions.php"]
},
"autoload-dev": {
"classmap": [
"tests/src"
]
},
"scripts": {
"test": "phpunit",
"coverage": "coveralls"
Expand Down
13 changes: 13 additions & 0 deletions src/Silk.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Silk;

class Silk
{
/**
* The library version.
*
* @var string
*/
const VERSION = '0.12.0';
}
File renamed without changes.

0 comments on commit 402243d

Please sign in to comment.