Skip to content

Commit 3033f07

Browse files
authored
Merge pull request #532 from senaite/release-1.2.0
v1.1.9 to v1.2.0
2 parents d1f2c70 + e288e81 commit 3033f07

11 files changed

+22
-81
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Description of the issue/feature this PR addresses
22

3-
Linked issue: https://github.com/senaite/bika.lims/issues/
3+
Linked issue: https://github.com/senaite/senaite.core/issues/
44

55
## Current behavior before PR
66

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ before_install:
3838
install:
3939
- bin/buildout -n -t 3 -c travis.cfg
4040
script:
41-
- bin/test -m senaite.core
41+
- bin/test -m bika.lims

CHANGES.rst

+1-20
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,7 @@
11
Changelog
22
=========
33

4-
1.1.10 (unreleased)
5-
-------------------
6-
7-
**Added**
8-
9-
10-
**Removed**
11-
12-
13-
**Changed**
14-
15-
16-
**Fixed**
17-
18-
19-
**Security**
20-
21-
22-
23-
1.1.9 (2018-01-03)
4+
1.2.0 (2018-01-03)
245
------------------
256

267
**Added**

README.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Introduction
2929

3030
SENAITE.CORE is an Open Source Laboratory Information Management System (LIMS)
3131
for enterprise environments, especially focused to behave with high speed,
32-
excellent performance and good stability.
32+
excellent performance and good stability.
3333

3434
This software is a derivative work of `Bika LIMS <https://github.com/bikalims/bika.lims>`_
3535
software and comes with the same user interface. Since SENAITE.CORE provides the
@@ -61,6 +61,7 @@ Create a new buildout file ``senaite.cfg`` which extends your existing
6161
your main buildout.cfg which you can also use on the production server::
6262

6363
[buildout]
64+
index = https://pypi.python.org/simple
6465
extends = buildout.cfg
6566

6667
[instance]
@@ -85,7 +86,7 @@ Installation for development
8586

8687
This is the recommended approach how to enable ``senaite.core`` for your
8788
development environment. With this approach, you'll be able to download the
88-
latest source code from `senaite.core's repository <https://github.com/senaite/senaite.core>`_
89+
latest source code from `senaite.core's repository <https://github.com/senaite/senaite.core>`_
8990
and contribute as well.
9091

9192
Use git to fetch ``senaite.core`` source code to your buildout environment::
@@ -100,6 +101,7 @@ from your main buildout.cfg which you can also use on the production server.
100101
``senaite.cfg``::
101102

102103
[buildout]
104+
index = https://pypi.python.org/simple
103105
extends = buildout.cfg
104106
develop +=
105107
src/senaite.core
@@ -122,7 +124,7 @@ Contribute
122124
==========
123125

124126
We want contributing to SENAITE.CORE to be fun, enjoyable, and educational for
125-
anyone, and everyone. This project adheres to the `Contributor Covenant <https://github.com/senaite/senaite.core/blob/master/CODE_OF_CONDUCT.md>`_.
127+
anyone, and everyone. This project adheres to the `Contributor Covenant <https://github.com/senaite/senaite.core/blob/master/CODE_OF_CONDUCT.md>`_.
126128
By participating, you are expected to uphold this code. Please report
127129
unacceptable behavior.
128130

@@ -135,5 +137,5 @@ document <https://github.com/senaite/senaite.core/blob/master/CONTRIBUTING.md>`_
135137
Feedback and support
136138
====================
137139

138-
* `Gitter channel <https://gitter.im/senaite/Lobby>`_
140+
* `Gitter channel <https://gitter.im/senaite/Lobby>`_
139141
* `Users list <https://sourceforge.net/projects/senaite/lists/senaite-users>`_

bika/lims/browser/senaite-frontpage.zcml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
<!-- TODO: TO BE REMOVED
99
It is only used to prevent an ugly Traceback when the instance hasn't been
10-
yet upgraded to 1.1.9. If authenticated, displays a landing page telling the
11-
user to upgrade to 1.1.9. If not authenticated, redirects to login page as
10+
yet upgraded to 1.2.0. If authenticated, displays a landing page telling the
11+
user to upgrade to 1.2.0. If not authenticated, redirects to login page as
1212
usual.-->
1313
<browser:page
1414
for="Products.CMFPlone.interfaces.IPloneSiteRoot"

bika/lims/profiles/default/metadata.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<metadata>
3-
<version>1.1.10</version>
3+
<version>1.2.0</version>
44
<dependencies>
55
<dependency>profile-jarn.jsi18n:default</dependency>
66
<dependency>profile-Products.ATExtensions:default</dependency>

bika/lims/upgrade/configure.zcml

+6-6
Original file line numberDiff line numberDiff line change
@@ -81,17 +81,17 @@
8181
profile="bika.lims:default"/>
8282

8383
<genericsetup:upgradeStep
84-
title="Upgrade to SENAITE.CORE 1.1.9"
84+
title="Upgrade to SENAITE.CORE 1.2.0"
8585
source="1.1.8"
86-
destination="1.1.9"
87-
handler="bika.lims.upgrade.v01_01_009.upgrade"
86+
destination="1.2.0"
87+
handler="bika.lims.upgrade.v01_02_000.upgrade"
8888
profile="bika.lims:default"/>
8989

9090
<genericsetup:upgradeStep
91-
title="Upgrade to SENAITE.CORE 1.1.10"
91+
title="Upgrade to SENAITE.CORE 1.2.0"
9292
source="1.1.9"
93-
destination="1.1.10"
94-
handler="bika.lims.upgrade.v01_01_010.upgrade"
93+
destination="1.2.0"
94+
handler="bika.lims.upgrade.v01_02_000.upgrade"
9595
profile="bika.lims:default"/>
9696

9797
</configure>

bika/lims/upgrade/v01_01_010.py

-26
This file was deleted.

bika/lims/upgrade/v01_01_009.py bika/lims/upgrade/v01_02_000.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from Products.CMFCore.Expression import Expression
1414
from bika.lims.utils import changeWorkflowState
1515

16-
version = '1.1.9' # Remember version number in metadata.xml and setup.py
16+
version = '1.2.0' # Remember version number in metadata.xml and setup.py
1717
profile = 'profile-{0}:default'.format(product)
1818

1919
@upgradestep(product, version)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from setuptools import setup, find_packages
77

8-
version = '1.1.10'
8+
version = '1.2.0'
99

1010
setup(
1111
name='senaite.core',

travis.cfg

+2-18
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
[buildout]
22
extends =
3-
https://raw.github.com/collective/buildout.plonetest/master/travis-4.3.x.cfg
4-
package-name = senaite.core
5-
package-extras = [test]
6-
test-eggs =
7-
senaite.core
3+
buildout.cfg
84

95
# network speedup
106
socket-timeout = 5
@@ -13,16 +9,4 @@ allow-hosts =
139
docutils.sourceforge.net
1410
prdownloads.sourceforge.net
1511
effbot.org
16-
dist.plone.org
17-
18-
[versions]
19-
Plone = 4.3.15
20-
zc.buildout =
21-
setuptools =
22-
CairoSVG = 1.0.20
23-
Sphinx = 1.1.3
24-
zc.recipe.egg = 1.3.2
25-
zope.pagetemplate = 3.6.3
26-
plone.recipe.codeanalysis = 1.0b5
27-
mock = 1.0.1
28-
five.pt = 2.2.4
12+
dist.plone.org

0 commit comments

Comments
 (0)