Skip to content

Commit

Permalink
0.13.0 release!
Browse files Browse the repository at this point in the history
  • Loading branch information
philiplb committed Feb 12, 2018
1 parent ffd60ce commit 1e05542
Show file tree
Hide file tree
Showing 161 changed files with 34,883 additions and 189 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
CRUDlex Changelog
=================

## 0.13.0
## 0.14.0
Released: Upcoming

## 0.13.0
Released: 2018-02-12
- The soft deletion is now optional (but switched on by default)
- Fixed content type of static files by detecting the mimetype by their name

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ CRUDlex is an easy to use, well documented and tested CRUD generator for Silex.

## Documentation

- [Documentation 0.13.0](http://philiplb.github.io/CRUDlex/docs/html/0.13.0/) (upcoming)
- [Documentation 0.13.0](http://philiplb.github.io/CRUDlex/docs/html/0.14.0/) (upcoming)
- [Documentation 0.13.0](http://philiplb.github.io/CRUDlex/docs/html/0.13.0/)
- [Documentation 0.12.0](http://philiplb.github.io/CRUDlex/docs/html/0.12.0/)
- [Documentation 0.11.0](http://philiplb.github.io/CRUDlex/docs/html/0.11.0/)
- [Documentation 0.10.0](http://philiplb.github.io/CRUDlex/docs/html/0.10.0/)
Expand All @@ -53,15 +54,15 @@ care about notes in the changelog when upgrading.

```json
"require": {
"philiplb/crudlex": "0.12.0"
"philiplb/crudlex": "0.13.0"
}
```

### Bleeding Edge

```json
"require": {
"philiplb/crudlex": "0.13.x-dev"
"philiplb/crudlex": "0.14.x-dev"
}
```

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.13.x-dev"
"dev-master": "0.14.x-dev"
}
}
}
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.12.0'
version = u'0.14.0'
# The full version, including alpha/beta/rc tags.
release = u'0.12.0'
release = u'0.14.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/html/0.13.0/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: e69166ad9716feb667fdb65a73e9a1a6
config: 5df8231393234aed86b264b0aaa1d6d4
tags: 645f666f9bcd5a90fca523b33c5a78b7
26 changes: 1 addition & 25 deletions docs/html/0.13.0/_static/doctools.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ var Documentation = {
this.fixFirefoxAnchorBug();
this.highlightSearchWords();
this.initIndexTable();

},

/**
Expand Down Expand Up @@ -253,29 +252,6 @@ var Documentation = {
});
var url = parts.join('/');
return path.substring(url.lastIndexOf('/') + 1, path.length - 1);
},

initOnKeyListeners: function() {
$(document).keyup(function(event) {
var activeElementType = document.activeElement.tagName;
// don't navigate when in search box or textarea
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT') {
switch (event.keyCode) {
case 37: // left
var prevHref = $('link[rel="prev"]').prop('href');
if (prevHref) {
window.location.href = prevHref;
return false;
}
case 39: // right
var nextHref = $('link[rel="next"]').prop('href');
if (nextHref) {
window.location.href = nextHref;
return false;
}
}
}
});
}
};

Expand All @@ -284,4 +260,4 @@ _ = Documentation.gettext;

$(document).ready(function() {
Documentation.init();
});
});
8 changes: 4 additions & 4 deletions docs/html/0.13.0/api/AbstractData.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>CRUDlex\AbstractData &mdash; CRUDlex 0.12.0 documentation</title>
<title>CRUDlex\AbstractData &mdash; CRUDlex 0.13.0 documentation</title>



Expand All @@ -30,7 +30,7 @@



<link rel="top" title="CRUDlex 0.12.0 documentation" href="../index.html"/>
<link rel="top" title="CRUDlex 0.13.0 documentation" href="../index.html"/>
<link rel="next" title="CRUDlex\MySQLData" href="MySQLData.html"/>
<link rel="prev" title="CRUD YAML Reference" href="../manual/crudyamlreference.html"/>

Expand Down Expand Up @@ -60,7 +60,7 @@


<div class="version">
0.12.0
0.13.0
</div>


Expand Down Expand Up @@ -651,7 +651,7 @@ <h1>CRUDlex\AbstractData<a class="headerlink" href="#crudlex-abstractdata" title
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'0.12.0',
VERSION:'0.13.0',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
Expand Down
8 changes: 4 additions & 4 deletions docs/html/0.13.0/api/ControllerProvider.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>CRUDlex\ControllerProvider &mdash; CRUDlex 0.12.0 documentation</title>
<title>CRUDlex\ControllerProvider &mdash; CRUDlex 0.13.0 documentation</title>



Expand All @@ -30,7 +30,7 @@



<link rel="top" title="CRUDlex 0.12.0 documentation" href="../index.html"/>
<link rel="top" title="CRUDlex 0.13.0 documentation" href="../index.html"/>
<link rel="next" title="CRUDlex\DataFactoryInterface" href="DataFactoryInterface.html"/>
<link rel="prev" title="CRUDlex\MySQLData" href="MySQLData.html"/>

Expand Down Expand Up @@ -60,7 +60,7 @@


<div class="version">
0.12.0
0.13.0
</div>


Expand Down Expand Up @@ -630,7 +630,7 @@ <h1>CRUDlex\ControllerProvider<a class="headerlink" href="#crudlex-controllerpro
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'0.12.0',
VERSION:'0.13.0',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
Expand Down
8 changes: 4 additions & 4 deletions docs/html/0.13.0/api/DataFactoryInterface.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>CRUDlex\DataFactoryInterface &mdash; CRUDlex 0.12.0 documentation</title>
<title>CRUDlex\DataFactoryInterface &mdash; CRUDlex 0.13.0 documentation</title>



Expand All @@ -30,7 +30,7 @@



<link rel="top" title="CRUDlex 0.12.0 documentation" href="../index.html"/>
<link rel="top" title="CRUDlex 0.13.0 documentation" href="../index.html"/>
<link rel="next" title="CRUDlex\MySQLDataFactory" href="MySQLDataFactory.html"/>
<link rel="prev" title="CRUDlex\ControllerProvider" href="ControllerProvider.html"/>

Expand Down Expand Up @@ -60,7 +60,7 @@


<div class="version">
0.12.0
0.13.0
</div>


Expand Down Expand Up @@ -244,7 +244,7 @@ <h1>CRUDlex\DataFactoryInterface<a class="headerlink" href="#crudlex-datafactory
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'0.12.0',
VERSION:'0.13.0',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
Expand Down
8 changes: 4 additions & 4 deletions docs/html/0.13.0/api/Entity.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>CRUDlex\Entity &mdash; CRUDlex 0.12.0 documentation</title>
<title>CRUDlex\Entity &mdash; CRUDlex 0.13.0 documentation</title>



Expand All @@ -30,7 +30,7 @@



<link rel="top" title="CRUDlex 0.12.0 documentation" href="../index.html"/>
<link rel="top" title="CRUDlex 0.13.0 documentation" href="../index.html"/>
<link rel="next" title="CRUDlex\EntityDefinition" href="EntityDefinition.html"/>
<link rel="prev" title="CRUDlex\MySQLDataFactory" href="MySQLDataFactory.html"/>

Expand Down Expand Up @@ -60,7 +60,7 @@


<div class="version">
0.12.0
0.13.0
</div>


Expand Down Expand Up @@ -357,7 +357,7 @@ <h1>CRUDlex\Entity<a class="headerlink" href="#crudlex-entity" title="Permalink
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'0.12.0',
VERSION:'0.13.0',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
Expand Down
8 changes: 4 additions & 4 deletions docs/html/0.13.0/api/EntityDefinition.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>CRUDlex\EntityDefinition &mdash; CRUDlex 0.12.0 documentation</title>
<title>CRUDlex\EntityDefinition &mdash; CRUDlex 0.13.0 documentation</title>



Expand All @@ -30,7 +30,7 @@



<link rel="top" title="CRUDlex 0.12.0 documentation" href="../index.html"/>
<link rel="top" title="CRUDlex 0.13.0 documentation" href="../index.html"/>
<link rel="next" title="CRUDlex\EntityDefinitionFactoryInterface" href="EntityDefinitionFactoryInterface.html"/>
<link rel="prev" title="CRUDlex\Entity" href="Entity.html"/>

Expand Down Expand Up @@ -60,7 +60,7 @@


<div class="version">
0.12.0
0.13.0
</div>


Expand Down Expand Up @@ -1082,7 +1082,7 @@ <h1>CRUDlex\EntityDefinition<a class="headerlink" href="#crudlex-entitydefinitio
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'0.12.0',
VERSION:'0.13.0',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
Expand Down
8 changes: 4 additions & 4 deletions docs/html/0.13.0/api/EntityDefinitionFactory.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>CRUDlex\EntityDefinitionFactory &mdash; CRUDlex 0.12.0 documentation</title>
<title>CRUDlex\EntityDefinitionFactory &mdash; CRUDlex 0.13.0 documentation</title>



Expand All @@ -30,7 +30,7 @@



<link rel="top" title="CRUDlex 0.12.0 documentation" href="../index.html"/>
<link rel="top" title="CRUDlex 0.13.0 documentation" href="../index.html"/>
<link rel="up" title="CRUDlex\EntityDefinitionFactoryInterface" href="EntityDefinitionFactoryInterface.html"/>
<link rel="next" title="CRUDlex\EntityDefinitionValidatorInterface" href="EntityDefinitionValidatorInterface.html"/>
<link rel="prev" title="CRUDlex\EntityDefinitionFactoryInterface" href="EntityDefinitionFactoryInterface.html"/>
Expand Down Expand Up @@ -61,7 +61,7 @@


<div class="version">
0.12.0
0.13.0
</div>


Expand Down Expand Up @@ -242,7 +242,7 @@ <h1>CRUDlex\EntityDefinitionFactory<a class="headerlink" href="#crudlex-entityde
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'0.12.0',
VERSION:'0.13.0',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
Expand Down
8 changes: 4 additions & 4 deletions docs/html/0.13.0/api/EntityDefinitionFactoryInterface.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>CRUDlex\EntityDefinitionFactoryInterface &mdash; CRUDlex 0.12.0 documentation</title>
<title>CRUDlex\EntityDefinitionFactoryInterface &mdash; CRUDlex 0.13.0 documentation</title>



Expand All @@ -30,7 +30,7 @@



<link rel="top" title="CRUDlex 0.12.0 documentation" href="../index.html"/>
<link rel="top" title="CRUDlex 0.13.0 documentation" href="../index.html"/>
<link rel="next" title="CRUDlex\EntityDefinitionFactory" href="EntityDefinitionFactory.html"/>
<link rel="prev" title="CRUDlex\EntityDefinition" href="EntityDefinition.html"/>

Expand Down Expand Up @@ -60,7 +60,7 @@


<div class="version">
0.12.0
0.13.0
</div>


Expand Down Expand Up @@ -247,7 +247,7 @@ <h1>CRUDlex\EntityDefinitionFactoryInterface<a class="headerlink" href="#crudlex
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../',
VERSION:'0.12.0',
VERSION:'0.13.0',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true
Expand Down
Loading

0 comments on commit 1e05542

Please sign in to comment.