Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
\#*#
/TAGS
/WIP


# Generated build files
*.fasl
*.texi

# Files local to a developer
TODO.org
NOTES.org
*.text

public
45 changes: 45 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# How to Contribute

We'd love to accept your patches and contributions to this project. There are
just a few small guidelines you need to follow.

## Contributor License Agreement

Contributions to this project must be accompanied by a Contributor License
Agreement. You (or your employer) retain the copyright to your contribution;
this simply gives us permission to use and redistribute your contributions as
part of the project.

You generally only need to submit a CLA once, so if you've already submitted one
(even if it was for a different project), you probably don't need to do it
again.

## The Contribution Process

The basic workflow is:

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

With multiple contributors and the desire to maintain high quality
code, we need a small bit of process. For example all submissions,
including submissions by project members, require review. We use
GitHub pull requests for this purpose. Consult [GitHub
Help](https://help.github.com/articles/about-pull-requests/) for more
information on using pull requests, and the [contributing
code](https://lisp-stat.dev/docs/contributing/code/) page for more
details.

## Community Guidelines

This project follows a code of conduct that can be found on the
[contributing](https://lisp-stat.dev/docs/contributing/) page.

## How to contribute

See the [contribution
guidelines](https://lisp-stat.dev/docs/contributing/)
in the Lisp-Stat user guide.
15 changes: 15 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
2024-04-30 Steve Nunez

* RELEASE: 1.0.0

* Refactor the directory structure and remove file boiler plate

* Clean up ASDF

* Add array and vector types

* Add IEEE-754 floating point types

* Improve README and documentation


2003-12-11 Frode Vatvedt Fjeld <frodef@cs.uit.no>

* RELEASE: 0.90
Expand Down
16 changes: 2 additions & 14 deletions COPYING → LICENSE
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
######################################################################
##
## Copyright (C) 1999,
## Department of Computer Science, University of Troms�, Norway
##
## Filename: COPYING
## Description: Defines the terms under which this software may be copied.
## Author: Frode Vatvedt Fjeld <frodef@acm.org>
## Created at: Mon Nov 8 20:32:12 1999
## Distribution: See the accompanying file COPYING.
##
## $Id: COPYING,v 1.1.1.1 2004/01/13 11:13:13 ffjeld Exp $
##
######################################################################
Copyright (C) 1999, Department of Computer Science, University of Troms�, Norway
Copyright (C) 2024, Steven Nunez

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
Expand Down
41 changes: 0 additions & 41 deletions Makefile

This file was deleted.

Loading