Skip to content

Commit

Permalink
Update copyright year
Browse files Browse the repository at this point in the history
  • Loading branch information
sudoremo committed Jun 6, 2024
1 parent bf7af7f commit 41d1aea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright © 2016 - 2023 Sitrox
Copyright © 2016 - 2024 Sitrox

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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ To run tests:

## Copyright

Copyright © 2016 - 2023 Sitrox. See `LICENSE` for further details.
Copyright © 2016 - 2024 Sitrox. See `LICENSE` for further details.
6 changes: 3 additions & 3 deletions README_V2.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ s = Schema.new do
req :foo, default: 42
end

collector = s.validate({})
collector = s.validate({})
collector.valid? # true
collector.data # => { foo: 42 }

collector = s.validate({ foo: 'invalid' })
collector = s.validate({ foo: 'invalid' })
collector.valid? # false
collector.data # => nil
collector.exceptions # => Validation error
Expand Down Expand Up @@ -772,4 +772,4 @@ To run tests:

## Copyright

Copyright (c) 2020 Sitrox. See `LICENSE` for further details.
Copyright (c) 2024 Sitrox. See `LICENSE` for further details.

0 comments on commit 41d1aea

Please sign in to comment.