Skip to content

Commit

Permalink
Merge branch 'release/1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
rzcastilho committed Oct 14, 2021
2 parents edbfbb5 + 039008e commit 4a35f8e
Show file tree
Hide file tree
Showing 12 changed files with 338 additions and 182 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
on:
push:
tags:
- '*'
branches:
- feature/*
pull_request:
branches:
- master
- develop

jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: [22.3, 23.3, 24.1]
elixir: [1.9.4, 1.10.4, 1.11.4, 1.12.3]
exclude:
- otp: 24.1
elixir: 1.9.4
- otp: 24.1
elixir: 1.10.4
- otp: 24.1
elixir: 1.11.4
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix coveralls.github
publish:
runs-on: ubuntu-latest
environment: production
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
needs: test
steps:
- name: Check out
uses: actions/checkout@v2

- name: Publish to Hex.pm
uses: erlangpack/github-action@v1
env:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

23 changes: 19 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
# Change log

## [0.1.1]

### Added

- Add ExCoveralls

### Fixed

- Fix build warnings [issue #10] @rzcastilho
- Fix spec type references

### Changed

- Add GitHub Actions and remove Travis CI

## [0.1.0]

### Added

- Parse namespace prefix for attribute names [issue #2] @rodrigozc
- Parse namespace prefix for attribute names [issue #2] @rzcastilho

### Changed

- Improve parse structure [issue #8] @rodrigozc
- Improve parse structure [issue #8] @rzcastilho

### Fixed

- Fix parser when children elements has the same name than parent [issue #7] @rodrigozc
- Fix parse for CDATA content [issue #6] @rodrigozc
- Fix parser when children elements has the same name than parent [issue #7] @rzcastilho
- Fix parse for CDATA content [issue #6] @rzcastilho
26 changes: 9 additions & 17 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
MIT License
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004

Copyright (c) 2016 Rodrigo Zampieri Castilho
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
0. You just DO WHAT THE FUCK YOU WANT TO.
Loading

0 comments on commit 4a35f8e

Please sign in to comment.