Skip to content

Commit f643bdd

Browse files
authored
Merge pull request #17 from NHDaly/nhd-Project.toml
Modernize: Add a Project.toml and bump version number to `v0.3.0`.
2 parents b5dd75b + 5e8ce46 commit f643bdd

File tree

5 files changed

+31
-6
lines changed

5 files changed

+31
-6
lines changed

.github/workflows/TagBot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: TagBot
2+
on:
3+
schedule:
4+
- cron: 0 * * * *
5+
jobs:
6+
TagBot:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: JuliaRegistries/TagBot@v1
10+
with:
11+
token: ${{ secrets.GITHUB_TOKEN }}
12+

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.jl.cov
22
*.jl.mem
3+
4+
/Manifest.toml

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ os:
33
- linux
44
- osx
55
julia:
6-
- 0.6
7-
- 0.7
86
- 1.0
7+
- 1
98
- nightly
109
notifications:
1110
email: false
@@ -14,4 +13,4 @@ notifications:
1413
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
1514
# - julia --check-bounds=yes -e 'VERSION >= v"0.7-" && import Pkg; Pkg.clone(pwd()); Pkg.build("AutoHashEquals"); Pkg.test("AutoHashEquals"; coverage=true)'
1615
after_success:
17-
- julia -e 'VERSION >= v"0.7-" && import Pkg; cd(Pkg.dir("AutoHashEquals")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
16+
- julia -e 'import Pkg; cd(Pkg.dir("AutoHashEquals")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

Project.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name = "AutoHashEquals"
2+
uuid = "97026771-8bcd-44fb-b7eb-f644370d63d3"
3+
authors = ["andrew cooke <[email protected]>"]
4+
version = "1.0.0"
5+
6+
[compat]
7+
julia = "1"
8+
9+
[extras]
10+
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
11+
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
12+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
13+
14+
[targets]
15+
test = ["Markdown", "Serialization", "Test"]

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
[![Build Status](https://travis-ci.org/andrewcooke/AutoHashEquals.jl.png)](https://travis-ci.org/andrewcooke/AutoHashEquals.jl)
22
[![Coverage Status](https://coveralls.io/repos/andrewcooke/AutoHashEquals.jl/badge.svg)](https://coveralls.io/r/andrewcooke/AutoHashEquals.jl)
33

4-
[![AutoHashEquals](http://pkg.julialang.org/badges/AutoHashEquals_0.5.svg)](http://pkg.julialang.org/?pkg=AutoHashEquals&ver=0.5)
5-
[![AutoHashEquals](http://pkg.julialang.org/badges/AutoHashEquals_0.6.svg)](http://pkg.julialang.org/?pkg=AutoHashEquals&ver=0.6)
6-
74
# AutoHashEquals
85

96
A macro to add == and hash() to composite types (ie struct and mutable struct

0 commit comments

Comments
 (0)