From daabd22dc75dc0f689d6098eb78746b10b453774 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sat, 17 Nov 2018 10:39:38 -0500 Subject: [PATCH] Get licensing and stuff in place --- CHANGELOG | 3 +++ Cargo.toml | 4 ++-- LICENSE | 13 +++++++++++++ qadapt-macro/Cargo.toml | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG create mode 100644 LICENSE diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..b12fe52 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,3 @@ +# Version 0.6.0 (2018-11-17) + +- Fixed exit early bugs when closures contained `return` statements \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 0a5f117..16247d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qadapt" -version = "0.5.0" +version = "0.6.0" authors = ["Bradlee Speice "] description = "The Quick And Dirty Allocation Profiling Tool" license = "Apache-2.0" @@ -22,4 +22,4 @@ libc = "0.2" spin = "0.4" thread-id = "3.3" -qadapt-macro = { version = "0.5.0", path = "./qadapt-macro" } \ No newline at end of file +qadapt-macro = { version = "0.6.0", path = "./qadapt-macro" } \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b7759c7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2018 Bradlee Speice + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/qadapt-macro/Cargo.toml b/qadapt-macro/Cargo.toml index 98d681c..012cccb 100644 --- a/qadapt-macro/Cargo.toml +++ b/qadapt-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qadapt-macro" -version = "0.5.0" +version = "0.6.0" authors = ["Bradlee Speice "] description = "The Quick And Dirty Allocation Profiling Tool - Support Macros" license = "Apache-2.0"