Skip to content

Commit

Permalink
Edit Authors (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafafrdz authored Jun 3, 2024
1 parent 73d4fe0 commit 0a83fb3
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ categories:
- title: '📚 Docs'
labels:
- 'doc'
- 'documentation'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'

template: |
Expand All @@ -36,9 +37,12 @@ template: |
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
autolabeler:
- label: 'doc'
- label: 'documentation'
files:
- '*.md'
title:
- '/doc/i'
- '/documentation/i'
- label: 'bug'
title:
- '/fix/i'
Expand Down
1 change: 1 addition & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ changelog:
- title: '📚 Docs'
labels:
- 'doc'
- 'documentation'
2 changes: 1 addition & 1 deletion .github/workflows/scala-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches: [ "master" ]

jobs:
publish:
checks:
runs-on: ubuntu-latest
steps:

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package io.github.rafafrdz.criteria4s.core


trait Criteria[T <: CriteriaTag] {
def value: String

Expand All @@ -12,5 +11,5 @@ object Criteria {

override def value: String = v
}
private [core] trait CriteriaTag
private[core] trait CriteriaTag
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.github.rafafrdz.criteria4s.core

import io.github.rafafrdz.criteria4s.core.Criteria._
import io.github.rafafrdz.criteria4s.instances.builder.{BuilderUnary, BuilderBinary}
import io.github.rafafrdz.criteria4s.instances.builder.{BuilderBinary, BuilderUnary}

sealed trait Predicate[T <: CriteriaTag]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package object functions extends predicates with conjunctions {
H.eval(ref)

def cond[T <: CriteriaTag, H <: Conjuction[T]](cr1: Criteria[T], cr2: Criteria[T])(implicit
H: H
H: H
): Criteria[T] =
H.eval(cr1, cr2)

Expand Down

0 comments on commit 0a83fb3

Please sign in to comment.