Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.2 #42

Merged
merged 2 commits into from
Mar 13, 2024
Merged
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
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
.vscode

# So that files from debugging don't get committed
# Only applies to wat/wasm files in root
# Only applies to claw, wat, and wasm files in root
# Not e.g. crates/codegen/allocator.wat
*.wat
*.wasm
*.claw

# The compiled publish script
publish
46 changes: 46 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting Robin Brown at [[email protected]](mailto:[email protected]). Please include in your email subject "Claw" and "CoC" or "Code of Conduct". Robin will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. Robin is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.

As other maintainers join the project, Robin will divest personal oversight over CoC matters to a separate CoC team and this document will be updated. If this project becomes joins an organization, it will adopt the Code of Conduct process of that organization.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]

[homepage]: https://www.contributor-covenant.org
[version]: https://www.contributor-covenant.org/version/1/4/
34 changes: 34 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Contributing to Claw

#### Table of Contents

[Code of Conduct](#code-of-conduct)
[Getting Started Contributing](#getting-started-contributing)

## Code of Conduct

This project and everyone participating in it is governed by the [Claw Contributor Covenant Code of Conduct][CoC]. By participating, you are expected to uphold this code. Please report unacceptable behavior to [email protected].

## Getting Started Contributing

The best way to start contributing is to become a user.

As a user, you can then help by

1. Noticing problems with Claw or its docs and [filing issues][issues]
* Please check if they've already been filed first!!
* Focus on clear bugs, well-defined problems, obvious gaps, etc. here.
2. Participating in and starting [discussions] about potential new features
* Let's keep open ended and [bikeshed]-style conversations here!

Once you're familiar with the project and its code, it's a good time to look for code contributions to make.

Try to find an issue with maintainer (@esoterra) approval (ideally a [good first issue]) and try to implement it.

When you're ready, submit a Pull Request or Draft Pull Request and we'll take a look at it!

[CoC]: ./CODE_OF_CONDUCT.md
[issues]: https://github.com/esoterra/claw-lang/issues
[discussions]: https://github.com/esoterra/claw-lang/discussions
[bikeshed]: https://bikeshed.org/
[good first issue]: https://github.com/esoterra/claw-lang/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ members = [
]

[workspace.package]
version = "0.2.1"
version = "0.2.2"
authors = ["Robin Brown"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-APACHE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2021 Kyle Brown
Copyright 2021 Robin Brown

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Kyle Brown
Copyright (c) 2021 Robin Brown

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Empty file removed bad.claw
Empty file.
6 changes: 6 additions & 0 deletions ci/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Release Process

```
rustc ci/publish.rs
./publish publish
```
Binary file removed publish
Binary file not shown.
Loading