From 2e18f941b61f7cc502b3b31d023db7e33dc52a38 Mon Sep 17 00:00:00 2001 From: Patrick Li Date: Mon, 10 Jul 2023 16:04:30 -0700 Subject: [PATCH] Fix auxfile serializer. Forgot to include pkgcache statement. --- compiler/aux-file-serializer.stanza | 1 + compiler/params.stanza | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/aux-file-serializer.stanza b/compiler/aux-file-serializer.stanza index c0266c21..56c3f87d 100644 --- a/compiler/aux-file-serializer.stanza +++ b/compiler/aux-file-serializer.stanza @@ -87,6 +87,7 @@ defserializer AuxFileSerializer () : ImportWhenStmt: (package:symbol, dependencies:tuple(symbol)) CompileStmt: (file?:bool, name:string-or-tuple, dependencies:tuple(string), foreign-packages:tuple(foreign-package), commands:tuple(string)) ForeignPackageParamsStmt: (package-manager:symbol, projdir:string, entries:tuple(keyvalue(symbol,projitem))) + PkgCacheStmt: (directory:string) defunion projitem (?) : Symbol: symbol diff --git a/compiler/params.stanza b/compiler/params.stanza index 2d70b0bc..64ca5e0d 100644 --- a/compiler/params.stanza +++ b/compiler/params.stanza @@ -18,7 +18,7 @@ public defn compiler-flags () : to-tuple(COMPILE-FLAGS) ;========= Stanza Configuration ======== -public val STANZA-VERSION = [0 18 36] +public val STANZA-VERSION = [0 18 37] public var STANZA-INSTALL-DIR:String = "" public var OUTPUT-PLATFORM:Symbol = `platform public var STANZA-PKG-DIRS:List = List()