diff --git a/Numeric/Units/Dimensional/TF/Quantities.lhs b/Numeric/Units/Dimensional/TF/Quantities.lhs
--- a/Numeric/Units/Dimensional/TF/Quantities.lhs
+++ b/Numeric/Units/Dimensional/TF/Quantities.lhs
@@ -314,15 +314,19 @@
 > type DAngularMomentum = Dim Pos2 Pos1 Neg1 Zero Zero Zero Zero
 > type AngularMomentum = Quantity DAngularMomentum
 
-For these we don't bother defining new type synonyms for dimensionalities.
-Is this rational?
+> type Angle = PlaneAngle -- Abbreviation
+> type DAngle = DPlaneAngle -- Abbreviation
 
-> type Angle             = PlaneAngle -- Abbreviation
-> type Thrust            = Force
+> type Thrust = Force
+> type DThrust = DForce
+
+> type Torque = MomentOfForce
+> type DTorque = DMomentOfForce
+
 > type EnergyPerUnitMass = SpecificEnergy
+> type DEnergyPerUnitMass = DSpecificEnergy
 
 
 = References =
 
 [1] http://physics.nist.gov/Pubs/SP811/
-
diff --git a/changelog.md b/changelog.md
new file mode 100644
--- /dev/null
+++ b/changelog.md
@@ -0,0 +1,25 @@
+0.3 (2014-02)
+-------------
+Brought inline with dimensional-0.13.
+
+*  Added `Torque`.
+*  Added D.. for the type synonym quantities (e.g., `Angle`).
+
+
+0.2 (2013-07)
+-------------
+
+
+0.1.1 (2012-02)
+---------------
+
+
+0.1.0.1 (2012-02)
+-----------------
+
+
+0.1 (2012-02)
+-------------
+See the [announcement][1].
+
+[1]: http://flygdynamikern.blogspot.se/2012/02/announce-dimensional-tf-010-statically.html
diff --git a/dimensional-tf.cabal b/dimensional-tf.cabal
--- a/dimensional-tf.cabal
+++ b/dimensional-tf.cabal
@@ -1,10 +1,10 @@
 Name:                dimensional-tf
-Version:             0.2.1
+Version:             0.3
 License:             BSD3
 License-File:        LICENSE
-Copyright:           Bjorn Buckwalter 2006-2013
+Copyright:           Bjorn Buckwalter 2006-2014
 Author:              Bjorn Buckwalter
-Maintainer:          bjorn.buckwalter@gmail.com
+Maintainer:          bjorn@buckwalter.se
 Stability:           experimental
 Homepage:            http://dimensional.googlecode.com/
 Synopsis:            Statically checked physical dimensions, implemented
@@ -33,7 +33,8 @@
                      Numeric.Units.Dimensional.TF.SIUnits,
                      Numeric.Units.Dimensional.TF.NonSI
 Extra-source-files:  README,
-                     Test.hs
+                     changelog.md,
+                     Test.hs,
                      Numeric/Units/Dimensional/TF/Test.hs,
                      Numeric/Units/Dimensional/TF/QuantitiesTest.hs,
                      examples/README,
