Skip to content

Commit

Permalink
Releasing 1.8.0 again
Browse files Browse the repository at this point in the history
  • Loading branch information
mjakubowski84 committed Apr 12, 2021
1 parent db1ba85 commit 4382eb5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@ lazy val supportedScalaVersions = Seq("2.11.12", "2.12.13", "2.13.5")
lazy val fs2ScalaVersions = Seq("2.12.13", "2.13.5")

ThisBuild / organization := "com.github.mjakubowski84"
ThisBuild / version := "1.9.0-SNAPSHOT"
ThisBuild / isSnapshot := true
ThisBuild / version := "1.8.0"
ThisBuild / isSnapshot := false
ThisBuild / scalaVersion := "2.12.13"
ThisBuild / scalacOptions ++= Seq("-deprecation", "-target:jvm-1.8")
ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-unchecked", "-deprecation", "-feature")
ThisBuild / resolvers := Seq(
Opts.resolver.sonatypeReleases,
Resolver.jcenterRepo
)
ThisBuild / makePomConfiguration := makePomConfiguration.value.withConfigurations(Configurations.defaultMavenConfigurations)
ThisBuild / makePomConfiguration := makePomConfiguration
.value
.withConfigurations(Configurations.defaultMavenConfigurations)


lazy val publishSettings = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ package com.github.mjakubowski84.parquet4s

import shapeless.Witness

import java.util.Calendar

/**
* Auxiliary construct that facilitates traversal over tree of case classes.
* Apart from pointing if program should advance the tree it implements visitor pattern that allows to process
Expand Down Expand Up @@ -44,6 +46,8 @@ trait Cursor {

object Cursor {

Calendar.getInstance.getTime

type DotPath = List[String]
object DotPath {
val empty: DotPath = List.empty
Expand Down

0 comments on commit 4382eb5

Please sign in to comment.