浏览代码

Bump version, update changelog for 0.4

master
David Winterbottom 12 年前
父节点
当前提交
800fcf652f
共有 2 个文件被更改,包括 46 次插入4 次删除
  1. 45
    3
      CHANGELOG.rst
  2. 1
    1
      oscar/__init__.py

+ 45
- 3
CHANGELOG.rst 查看文件

@@ -2,12 +2,54 @@
2 2
 Changelog
3 3
 =========
4 4
 
5
-0.4 (not released yet)
6
-----------------------
5
+0.4 - 2012-10-19
6
+----------------
7
+
8
+Quite a big release this one.  Several new features have been added since the
9
+0.3 release series:
10
+
7 11
 * Better support for digital products.  Additional fields added to product class
8 12
   model.
13
+* HTML editing within the dashboard
14
+* A new email dashboard
9 15
 * Major refactor of the offers module and test suite  
10
-* Product stock alerts
16
+* Product stock alerts: customers can request an alert when when a product comes
17
+  back into stock
18
+* Customer notifications: an API and inbox for sending users notifications
19
+
20
+Upgrading
21
+~~~~~~~~~
22
+
23
+Four apps have new migrations.  If you subclass these apps in your project, you
24
+will need to create a new schema migration for each to pick up the upstream
25
+changes.
26
+
27
+* Basket: 
28
+  
29
+  - A ``price_excl_tax`` has been added to ``basket.Line``.  This is
30
+    useful for applications that use dynamic pricing where both the price with and
31
+    without tax needs to be stored. 
32
+
33
+* Catalogue:
34
+
35
+  - A ``requires_shipping`` field has been added to ``catalogue.ProductClass``
36
+    to facilitate better support for digital products (that don't require
37
+    shipping).
38
+
39
+  - The ``code`` field of ``catalogue.Option`` now has a unique index.
40
+
41
+* Customer: 
42
+
43
+  - New models for stock alerts and notifications
44
+  - The ``email_subject_template`` field from
45
+    ``customer.CommunicationEventType`` is now nullable.
46
+
47
+* Order:
48
+
49
+  - An ``offer_name`` field has been added to ``order.OrderDiscount`` so retain
50
+    audit information on discounts after offers are deleted.
51
+
52
+Please ask on the mailing list if any other problems are encountered.
11 53
 
12 54
 0.3.3 - 2012-08-24
13 55
 -------------------

+ 1
- 1
oscar/__init__.py 查看文件

@@ -3,7 +3,7 @@ import os
3 3
 # Use 'final' as the 4th element to indicate
4 4
 # a full release
5 5
 
6
-VERSION = (0, 4, 0, 'alpha', 0)
6
+VERSION = (0, 4, 0, 'final')
7 7
 
8 8
 
9 9
 def get_short_version():

正在加载...
取消
保存