summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-04-26 17:32:49 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-04-26 17:32:49 +0000
commit003e897f6839b7f5e771c2b8f4c7feb9fadba4dc (patch)
tree5a40e6851f1fae8d7f01fbdf1b01c0fd7b49406e
parenta78bf1ee71dd3a0930ad5f7277f7c50dc66fa55d (diff)
downloadpuppet-003e897f6839b7f5e771c2b8f4c7feb9fadba4dc.tar.gz
puppet-003e897f6839b7f5e771c2b8f4c7feb9fadba4dc.tar.xz
puppet-003e897f6839b7f5e771c2b8f4c7feb9fadba4dc.zip
updating changelog for 0.16.1 and 0.16.2
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1141 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--CHANGELOG14
-rwxr-xr-xtest/executables/puppetca.rb2
2 files changed, 15 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2b1a8620b..7042c2acf 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,17 @@
+0.16.2
+ Modified some of the AST classes so that class names, definition names, and
+ node names are all set within the code being evaluated, so 'tagged(name)' returns
+ true while evaluating 'name', for instance.
+
+ Added '--clean' argument to puppetca to remove all traces of a given
+ client.
+
+0.16.1
+ Added 'tagged' and 'defined' functions.
+
+ Moved all functions to a general framework that makes it very easy to add new
+ functions.
+
0.16.0
Added 'tag' keyword/function.
diff --git a/test/executables/puppetca.rb b/test/executables/puppetca.rb
index 8a232ab8d..1248e0345 100755
--- a/test/executables/puppetca.rb
+++ b/test/executables/puppetca.rb
@@ -82,7 +82,7 @@ class TestPuppetCA < Test::Unit::TestCase
output = runca("--list").chomp.split("\n")
}
assert_equal($?,0)
- assert_equal([], output)
+ assert_equal(["No certificates to sign"], output)
end
end