summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-02 20:12:06 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-02 20:12:06 -0400
commit1af50725c81108849fc677a412f3b5ee131fc935 (patch)
tree01cb942c019ad1b0e2f108c7fdadd0cecfb16102
parent020a863f3a3c9dc54bfab487b25b92ab2a18f891 (diff)
preparing for 0.12-1 release.
-rw-r--r--debian/changelog2
-rw-r--r--website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn4
-rw-r--r--website/news/release-0.12-1.mdwn9
3 files changed, 14 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 8d33273..85cb655 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-monkeysphere (0.12-1) UNRELEASED; urgency=low
+monkeysphere (0.12-1) experimental; urgency=low
[ Jameson Graef Rollins ]
* Improved output handling. New LOG_LEVEL variable.
diff --git a/website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn b/website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn
index 4070d0a..b814d35 100644
--- a/website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn
+++ b/website/bugs/monkeysphere-ssh-proxycommand-quiet-option.mdwn
@@ -245,3 +245,7 @@ I'll leave the bug open for a bit until it get more tested and 0.12
gets pushed out.
-- BJ
+
+---
+
+I think this is [[/bugs/done]] as of version 0.12-1.
diff --git a/website/news/release-0.12-1.mdwn b/website/news/release-0.12-1.mdwn
new file mode 100644
index 0000000..ed1ecbb
--- /dev/null
+++ b/website/news/release-0.12-1.mdwn
@@ -0,0 +1,9 @@
+[[meta title="MonkeySphere 0.12-1 released!"]]
+
+# MonkeySphere 0.12-1 released! #
+
+MonkeySphere 0.12-1 has been released. This release includes
+documentation updates, and a re-organized logging subsystem with
+various levels of verbosity, modeled after LogLevel in OpenSSH.
+
+[[download]] it now!
ass="hl com"> income_accno_id int,
  • expense_accno_id int,
  • fxgain_accno_id int,
  • fxloss_accno_id int,
  • */
  • \COPY defaults FROM stdin WITH DELIMITER |
  • sinumber|1
  • sonumber|1
  • yearend|1
  • businessnumber|1
  • version|1.2.0
  • closedto|\N
  • revtrans|1
  • ponumber|1
  • sqnumber|1
  • rfqnumber|1
  • audittrail|0
  • vinumber|1
  • employeenumber|1
  • partnumber|1
  • customernumber|1
  • vendornumber|1
  • glnumber|1
  • projectnumber|1
  • \.
  • -- */
  • CREATE TABLE acc_trans (
  • trans_id int,
  • chart_id int NOT NULL REFERENCES chart (id),
  • amount NUMERIC,
  • transdate date DEFAULT current_date,
  • source text,
  • cleared bool DEFAULT 'f',
  • fx_transaction bool DEFAULT 'f',
  • project_id int,
  • memo text,
  • invoice_id int,
  • entry_id SERIAL PRIMARY KEY
  • );
  • --
  • CREATE TABLE invoice (
  • id int DEFAULT nextval ( 'invoiceid' ) PRIMARY KEY,
  • trans_id int,
  • parts_id int,
  • description text,
  • qty integer,
  • allocated integer,
  • sellprice NUMERIC,
  • fxsellprice NUMERIC,
  • discount float4, -- jd: check into this
  • assemblyitem bool DEFAULT 'f',
  • unit varchar(5),
  • project_id int,
  • deliverydate date,
  • serialnumber text,
  • notes text
  • );
  • --
  • CREATE TABLE customer (
  • id int default nextval('id') PRIMARY KEY,
  • name varchar(64),
  • address1 varchar(32),
  • address2 varchar(32),
  • city varchar(32),
  • state varchar(32),
  • zipcode varchar(10),
  • country varchar(32),
  • contact varchar(64),
  • phone varchar(20),
  • fax varchar(20),
  • email text,
  • notes text,
  • discount numeric,
  • taxincluded bool default 'f',
  • creditlimit NUMERIC default 0,
  • terms int2 default 0,
  • customernumber varchar(32),
  • cc text,
  • bcc text,
  • business_id int,
  • taxnumber varchar(32),
  • sic_code varchar(6),
  • iban varchar(34),
  • bic varchar(11),
  • employee_id int,
  • language_code varchar(6),
  • pricegroup_id int,
  • curr char(3),
  • startdate date,
  • enddate date
  • );
  • --
  • --
  • CREATE TABLE parts (
  • id int DEFAULT nextval ( 'id' ) PRIMARY KEY,
  • partnumber text,
  • description text,
  • unit varchar(5),
  • listprice NUMERIC,
  • sellprice NUMERIC,
  • lastcost NUMERIC,
  • priceupdate date DEFAULT current_date,
  • weight numeric,
  • onhand numeric DEFAULT 0,
  • notes text,
  • makemodel bool DEFAULT 'f',
  • assembly bool DEFAULT 'f',
  • alternate bool DEFAULT 'f',
  • rop float4, -- jd: what is this
  • inventory_accno_id int,
  • income_accno_id int,
  • expense_accno_id int,
  • bin text,
  • obsolete bool DEFAULT 'f',
  • bom bool DEFAULT 'f',
  • image text,
  • drawing text,
  • microfiche text,
  • partsgroup_id int,
  • project_id int,
  • avgcost NUMERIC
  • );
  • --
  • CREATE TABLE assembly (
  • id int,
  • parts_id int,
  • qty numeric,
  • bom bool,
  • adj bool,
  • PRIMARY KEY (id, parts_id)
  • );
  • --
  • CREATE TABLE ar (
  • id int DEFAULT nextval ( 'id' ) PRIMARY KEY,
  • invnumber text,
  • transdate date DEFAULT current_date,
  • customer_id int,
  • taxincluded bool,
  • amount NUMERIC,
  • netamount NUMERIC,
  • paid NUMERIC,
  • datepaid date,
  • duedate date,
  • invoice bool DEFAULT 'f',
  • shippingpoint text,
  • terms int2 DEFAULT 0,
  • notes text,
  • curr char(3),
  • ordnumber text,
  • employee_id int,
  • till varchar(20),
  • quonumber text,
  • intnotes text,
  • department_id int default 0,
  • shipvia text,
  • language_code varchar(6),
  • ponumber text
  • );