aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/package.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/firrtl/package.scala')
-rw-r--r--src/main/scala/firrtl/package.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/scala/firrtl/package.scala b/src/main/scala/firrtl/package.scala
index bc23049c..fc07e05d 100644
--- a/src/main/scala/firrtl/package.scala
+++ b/src/main/scala/firrtl/package.scala
@@ -8,9 +8,9 @@ package object firrtl {
implicit def annoSeqToSeq(as: AnnotationSeq): Seq[Annotation] = as.underlying
/* Options as annotations compatibility items */
- @deprecated("Use firrtl.stage.TargetDirAnnotation", "3.2")
- type TargetDirAnnotation = firrtl.stage.TargetDirAnnotation
+ @deprecated("Use firrtl.stage.TargetDirAnnotation", "1.2")
+ type TargetDirAnnotation = firrtl.options.TargetDirAnnotation
- @deprecated("Use firrtl.stage.TargetDirAnnotation", "3.2")
- val TargetDirAnnotation = firrtl.stage.TargetDirAnnotation
+ @deprecated("Use firrtl.stage.TargetDirAnnotation", "1.2")
+ val TargetDirAnnotation = firrtl.options.TargetDirAnnotation
}