Skip to content

Commit

Permalink
Merge pull request #43 from kommitters/v0.2
Browse files Browse the repository at this point in the history
v0.2.0 release
  • Loading branch information
juanhurtado10 committed Aug 30, 2021
2 parents f8513aa + 8d66056 commit 41f8bcb
Show file tree
Hide file tree
Showing 63 changed files with 973 additions and 854 deletions.
15 changes: 15 additions & 0 deletions .credo.exs
@@ -0,0 +1,15 @@
%{
configs: [
%{
name: "default",
strict: true,
files: %{
included: ["lib/", "test/"]
},
checks: [
{Credo.Check.Readability.AliasOrder, false},
{Credo.Check.Readability.Specs, []}
]
}
]
}
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,36 @@
---
name: 🐞 Bug report
about: Tell us about a bug you found
title: ''
labels: '🐞 Bug, ⛑ Needs triage'
assignees: ''

---

### Precheck

- [ ] Do a quick search and make sure the bug has not been reported yet.
- [ ] Please disclose security vulnerabilities privately at [oss@kommit.co](mailto:oss@kommit.co).
- [ ] Finally, be nice and have fun!.

### Description

A clear and concise description of what the bug is.

### Environment

* Elixir & Erlang/OTP versions (elixir --version):
* Operating system:

### Current behavior

Include code samples, errors and stack traces if appropriate.
If reporting a bug, please include the reproducing steps.

### Expected behavior

A clear and concise description of what you expected to happen.

### Additional context

Add any other context about the problem here.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,24 @@
---
name: 👋 Feature request
about: Tell us what you'd like to see
title: ''
labels: '👍 Feature, ⛑ Needs triage'
assignees: ''

---

### Is your feature request related to a problem? Please describe.

A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

### Describe the solution you'd like

A clear and concise description of what you want to happen.

### Describe alternatives you've considered

A clear and concise description of any alternative solutions or features you've considered.

### Additional context

Add any other context or screenshots about the feature request here.
2 changes: 2 additions & 0 deletions .github/workflows/elixir.yml
Expand Up @@ -35,6 +35,8 @@ jobs:
run: mix format --check-formatted
- name: Run Tests
run: mix test
- name: Run credo
run: mix credo --strict
- name: Run Excoveralls
run: mix coveralls.github
env:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## 0.2.0 (27.08.2021)
* Fix array's elements encoding bug.
* Refactor library exceptions.
* Credo integration.
* Code cleanup.

## 0.1.6 (25.08.2021)
* Solve success-typing dialyzer warnings.
* Properly define typespecs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ XDR is an open data format, specified in [RFC 4506](http://tools.ietf.org/html/r
```elixir
def deps do
[
{:elixir_xdr, "~> 0.1.6"}
{:elixir_xdr, "~> 0.2.0"}
]
end
```
Expand Down

0 comments on commit 41f8bcb

Please sign in to comment.