Skip to content

Commit aacb0e8

Browse files
committed
synoyms and version bump
1 parent 8cde1ca commit aacb0e8

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,17 @@ The release versions that are sent to the Python package index (PyPI) are also t
107107

108108
The versioning uses a three part version system, "a.b.c" - "a" represents a major release that may not be backwards compatible. "b" is incremented on minor releases that may contain extra features, but are backwards compatible. "c" releases are bug fixes or other micro changes that developers should feel free to immediately update to.
109109

110+
### Hotfix 1.2.1 Beta 4
111+
112+
* **tag**: [v1.2.1b4](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.2.1b4)
113+
* **deployment**: Monday, July 11, 2016
114+
* **commit**: [see tag](#)
115+
116+
A quick hotfix due to a question and answer ordering by vote bug. Also took the chance to add links to the tags in the question list and detail pages as well as to fix the synonym bug (temporarily). Links for the tags are still not rendered after JavaScript editing though.
117+
110118
### Version 1.2 Beta 3
111119

112-
* **tag**: [v1.1b2](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.2b3)
120+
* **tag**: [v1.2b3](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.2b3)
113121
* **deployment**: Monday, July 11, 2016
114122
* **commit**: [6ff3530](https://github.com/DistrictDataLabs/minimum-entropy/commit/6ff3530eaf6af0584e65577ddeeedc19aced84a5)
115123

docs/about.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,17 @@ The release versions that are sent to the Python package index (PyPI) are also t
4949

5050
The versioning uses a three part version system, "a.b.c" - "a" represents a major release that may not be backwards compatible. "b" is incremented on minor releases that may contain extra features, but are backwards compatible. "c" releases are bug fixes or other micro changes that developers should feel free to immediately update to.
5151

52+
### Hotfix 1.2.1 Beta 4
53+
54+
* **tag**: [v1.2.1b4](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.2.1b4)
55+
* **deployment**: Monday, July 11, 2016
56+
* **commit**: [see tag](#)
57+
58+
A quick hotfix due to a question and answer ordering by vote bug. Also took the chance to add links to the tags in the question list and detail pages as well as to fix the synonym bug (temporarily). Links for the tags are still not rendered after JavaScript editing though.
59+
5260
### Version 1.2 Beta 3
5361

54-
* **tag**: [v1.1b2](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.2b3)
62+
* **tag**: [v1.2b3](https://github.com/DistrictDataLabs/minimum-entropy/releases/tag/v1.2b3)
5563
* **deployment**: Monday, July 11, 2016
5664
* **commit**: [6ff3530](https://github.com/DistrictDataLabs/minimum-entropy/commit/6ff3530eaf6af0584e65577ddeeedc19aced84a5)
5765

minent/templates/fugato/list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ <h3>
8383
<span class="label label-info">{{ question.votes.count }} vote{{ question.votes.count|pluralize }}</span>
8484
{% for tag in question.tags.all %}
8585
<a href="{% url 'question-list' %}?tag={{ tag.slug }}" title="Show questions tagged: {{ tag.text }}">
86-
<span class="label label-primary">{% if tag.is_synonym %}{{ tag.head_word }}{% else %}{{ tag }}{% endif %}</span>
86+
<span class="label label-primary">{{ tag }}</span>
8787
</a>
8888
{% endfor %}
8989
</p>

minent/templates/fugato/question.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ <h2 id="questionText">{{ question.text }}</h2>
130130
<div class="pull-left" id="questionTags">
131131
{% for tag in question.tags.all %}
132132
<a href="{% url 'question-list' %}?tag={{ tag.slug }}" title="Show questions tagged: {{ tag.text }}">
133-
<span class="label label-primary">{% if tag.is_synonym %}{{ tag.head_word }}{% else %}{{ tag }}{% endif %}</span>
133+
<span class="label label-primary">{{ tag }}</span>
134134
</a>
135135
{% endfor %}
136136
</div>

minent/tests/test_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
## Module variables
2424
##########################################################################
2525

26-
EXPECTED_VERSION = "1.2b3"
26+
EXPECTED_VERSION = "1.2.1b4"
2727

2828
##########################################################################
2929
## Initialization Tests

minent/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
__version_info__ = {
2121
'major': 1,
2222
'minor': 2,
23-
'micro': 0,
23+
'micro': 1,
2424
'releaselevel': 'beta',
25-
'serial': 3,
25+
'serial': 4,
2626
}
2727

2828

0 commit comments

Comments
 (0)