Skip to content

Commit 5879389

Browse files
committed
Bumped version to 0.12
1 parent fe218ab commit 5879389

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs/_templates/page.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
<div class="deck">
44

55
<div class="docversion">
6-
{% if version == "0.11" %}
6+
{% if version == "0.13" %}
77
<p class="devdoc">
88
This document is for Scrapy's development version, which can be
99
significantly different from previous releases. Get old docs here:
10+
<a href="http://doc.scrapy.org/0.12/{{ pagename }}{{ file_suffix }}">0.12</a>,
1011
<a href="http://doc.scrapy.org/0.10/{{ pagename }}{{ file_suffix }}">0.10</a>,
1112
<a href="http://doc.scrapy.org/0.9/{{ pagename }}{{ file_suffix }}">0.9</a>.
1213
<a href="http://doc.scrapy.org/0.8/{{ pagename }}{{ file_suffix }}">0.8</a>.

scrapy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Scrapy - a screen scraping framework written in Python
33
"""
44

5-
version_info = (0, 11, 0)
6-
__version__ = "0.11.0"
5+
version_info = (0, 12, 0)
6+
__version__ = "0.12.0"
77

88
import sys, os, warnings
99

0 commit comments

Comments
 (0)