From 6bb56b6c0022aaea724bd39073500b903f761c44 Mon Sep 17 00:00:00 2001 From: Philipp Marek <philipp@marek.priv.at> Date: Fri, 21 Dec 2018 07:46:43 +0100 Subject: [PATCH] Update project information --- alexandria.asd | 10 +++++----- package.lisp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/alexandria.asd b/alexandria.asd index 47141ac..db10e4f 100644 --- a/alexandria.asd +++ b/alexandria.asd @@ -1,16 +1,14 @@ (defsystem "alexandria" - :version "0.0.0" + :version "1.0.0" :licence "Public Domain / 0-clause MIT" :description "Alexandria is a collection of portable public domain utilities." - :author "Nikodemus Siivola <nikodemus@sb-studio.net>, and others." + :author "Nikodemus Siivola and others." :long-description "Alexandria is a project and a library. As a project Alexandria's goal is to reduce duplication of effort and improve portability of Common Lisp code according to its own idiosyncratic and rather -conservative aesthetic. What this actually means is open to debate, but each -project member has a veto on all project activities, so a degree of -conservativism is inevitable. +conservative aesthetic. As a library Alexandria is one of the means by which the project strives for its goals. @@ -28,6 +26,8 @@ the following constraints: * Conservative: Alexandria limits itself to what project members consider conservative utilities. Alexandria does not and will not include anaphoric constructs, loop-like binding macros, etc. + Also, its exported symbols are being imported by many other packages + already, so each new export carries the danger of causing conflicts. * Portable: Alexandria limits itself to portable parts of Common Lisp. Even apparently conservative and useful functions remain outside the scope of diff --git a/package.lisp b/package.lisp index 406451c..f9d2014 100644 --- a/package.lisp +++ b/package.lisp @@ -1,4 +1,4 @@ -(defpackage :alexandria.0.dev +(defpackage :alexandria.1.0.0 (:nicknames :alexandria) (:use :cl) #+sb-package-locks -- GitLab