diff --git a/Makefile b/Makefile index c70de53522d3bb1c9a850260deca1880db156450..957b7887530fa344436b325c9ab47b7cab85796a 100644 --- a/Makefile +++ b/Makefile @@ -153,6 +153,7 @@ test-all: doc test-all-lisps test-all-no-stop: -make doc ; for l in ${lisps} ; do make t l=$$l ; make u l=$$l ; done ; true +extract: extract-all-tagged-asdf extract-all-tagged-asdf: build/asdf.lisp ./test/run-tests.sh -H diff --git a/action.lisp b/action.lisp index 6f464665cb54f5b04ec8b6a83508ac7834529b8b..311c3f4010ed8e9c869ce5a6a09bde5f2ce576cb 100644 --- a/action.lisp +++ b/action.lisp @@ -38,17 +38,26 @@ ;;;; Convenience methods (with-upgradability () (defmacro define-convenience-action-methods - (function (operation component &optional keyp) - &key if-no-operation if-no-component operation-initargs) + (function formals &key if-no-operation if-no-component operation-initargs) (let* ((rest (gensym "REST")) (found (gensym "FOUND")) + (keyp (equal (last formals) '(&key))) + (formals-no-key (if keyp (butlast formals) formals)) + (len (length formals-no-key)) + (operation 'operation) + (component 'component) + (opix (position operation formals)) + (coix (position component formals)) + (prefix (subseq formals 0 opix)) + (suffix (subseq formals (1+ coix) len)) (more-args (when keyp `(&rest ,rest &key &allow-other-keys)))) + (assert (and (integerp opix) (integerp coix) (= coix (1+ opix)))) (flet ((next-method (o c) (if keyp - `(apply ',function ,o ,c ,rest) - `(,function ,o ,c)))) + `(apply ',function ,@prefix ,o ,c ,@suffix ,rest) + `(,function ,@prefix ,o ,c ,@suffix)))) `(progn - (defmethod ,function ((,operation symbol) ,component ,@more-args) + (defmethod ,function (,@prefix (,operation symbol) component ,@suffix ,@more-args) (if ,operation ,(next-method (if operation-initargs ;backward-compatibility with ASDF1's operate. Yuck. @@ -56,14 +65,13 @@ `(make-operation ,operation)) `(or (find-component () ,component) ,if-no-component)) ,if-no-operation)) - (defmethod ,function ((,operation operation) ,component ,@more-args) + (defmethod ,function (,@prefix (,operation operation) ,component ,@suffix ,@more-args) (if (typep ,component 'component) (error "No defined method for ~S on ~/asdf-action:format-action/" ',function (cons ,operation ,component)) - (let ((,found (find-component () ,component))) - (if ,found - ,(next-method operation found) - ,if-no-component))))))))) + (if-let (,found (find-component () ,component)) + ,(next-method operation found) + ,if-no-component)))))))) ;;;; self-description diff --git a/asdf.asd b/asdf.asd index eb16c317707a4a38ed5bdf7511b92205f5360d30..745085b8371a3f1faccf37432019ac965f601407 100644 --- a/asdf.asd +++ b/asdf.asd @@ -74,7 +74,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "3.0.1.3" ;; to be automatically updated by make bump-version + :version "3.0.1.7" ;; to be automatically updated by make bump-version :depends-on () #+asdf3 :encoding #+asdf3 :utf-8 ;; For most purposes, asdf itself specially counts as a builtin system. diff --git a/backward-interface.lisp b/backward-interface.lisp index 98d94a3c0d32c5e9669066d82c626b5b08bd3b25..6ecf0147e68777f14b817d513d3d0853c283d23c 100644 --- a/backward-interface.lisp +++ b/backward-interface.lisp @@ -5,11 +5,11 @@ (:recycle :asdf/backward-interface :asdf) (:use :uiop/common-lisp :uiop :asdf/upgrade :asdf/component :asdf/system :asdf/find-system :asdf/operation :asdf/action - :asdf/lisp-action :asdf/operate :asdf/output-translations) + :asdf/lisp-action :asdf/plan :asdf/operate :asdf/output-translations) (:export #:*asdf-verbose* #:operation-error #:compile-error #:compile-failed #:compile-warned - #:error-component #:error-operation + #:error-component #:error-operation #:traverse #:component-load-dependencies #:enable-asdf-binary-locations-compatibility #:operation-forced @@ -62,7 +62,19 @@ We recommend you use ASDF:SYSTEM-SOURCE-FILE instead for a mostly compatible replacement that we're supporting, or even ASDF:SYSTEM-SOURCE-DIRECTORY or ASDF:SYSTEM-RELATIVE-PATHNAME if that's whay you mean." ;;) - (system-source-file x))) + (system-source-file x)) + + (defgeneric* (traverse) (operation component &key &allow-other-keys) + (:documentation + "Generate and return a plan for performing OPERATION on COMPONENT. + +The plan returned is a list of dotted-pairs. Each pair is the CONS +of ASDF operation object and a COMPONENT object. The pairs will be +processed in order by OPERATE.")) + (define-convenience-action-methods traverse (operation component &key)) + + (defmethod traverse ((o operation) (c component) &rest keys &key plan-class &allow-other-keys) + (plan-actions (apply 'make-plan plan-class o c keys)))) ;;;; ASDF-Binary-Locations compatibility diff --git a/header.lisp b/header.lisp index d75114fff3aa8140fb8492d5d761377ff74209a9..04e6ee90af0cd08046e61ade24777f76f9b7010f 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 3.0.1.3: Another System Definition Facility. +;;; This is ASDF 3.0.1.7: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/interface.lisp b/interface.lisp index 61f404cda2efe513f5f1541b3688303522bc44e3..7fb3afd2d42af1058b71119323cad22e5b34bfc3 100644 --- a/interface.lisp +++ b/interface.lisp @@ -19,7 +19,7 @@ ;; TODO: automatically generate interface with reexport? (:export #:defsystem #:find-system #:locate-system #:coerce-name - #:oos #:operate #:traverse #:perform-plan #:sequential-plan + #:oos #:operate #:make-plan #:perform-plan #:sequential-plan #:system-definition-pathname #:with-system-definitions #:search-for-system-definition #:find-component #:component-find-path #:compile-system #:load-system #:load-systems @@ -75,6 +75,7 @@ #:module-components ; backward-compatibility #:operation-on-warnings #:operation-on-failure ; backward-compatibility #:component-property ; backward-compatibility + #:traverse ; backward-compatibility #:system-description #:system-long-description diff --git a/operate.lisp b/operate.lisp index 004632adaebcfee41cdfe8caf785d6d4066fd89d..09be392499e8e39d4fdf47ca861dbe4c91b68584 100644 --- a/operate.lisp +++ b/operate.lisp @@ -86,8 +86,8 @@ The :FORCE or :FORCE-NOT argument to OPERATE can be: (error 'missing-component-of-version :requires component :version version))) (defmethod operate ((operation operation) (component component) - &rest keys &key &allow-other-keys) - (let ((plan (apply 'traverse operation component keys))) + &rest keys &key plan-class &allow-other-keys) + (let ((plan (apply 'make-plan plan-class operation component keys))) (apply 'perform-plan plan keys) (values operation plan))) diff --git a/plan.lisp b/plan.lisp index bdf2651394d6d8a8d42d6309d923bdb5aa92fd30..a3c895df914e50835097b32f11bb8c36082afcbc 100644 --- a/plan.lisp +++ b/plan.lisp @@ -20,7 +20,7 @@ #:visit-dependencies #:compute-action-stamp #:traverse-action #:circular-dependency #:circular-dependency-actions #:call-while-visiting-action #:while-visiting-action - #:traverse #:plan-actions #:perform-plan #:plan-operates-on-p + #:make-plan #:plan-actions #:perform-plan #:plan-operates-on-p #:planned-p #:index #:forced #:forced-not #:total-action-count #:planned-action-count #:planned-output-action-count #:visited-actions #:visiting-action-set #:visiting-action-list #:plan-actions-r @@ -342,6 +342,8 @@ the action of OPERATION on COMPONENT in the PLAN")) ((actions-r :initform nil :accessor plan-actions-r))) (defgeneric plan-actions (plan)) + (defmethod plan-actions ((plan list)) + plan) (defmethod plan-actions ((plan sequential-plan)) (reverse (plan-actions-r plan))) @@ -358,39 +360,40 @@ the action of OPERATION on COMPONENT in the PLAN")) ;;;; high-level interface: traverse, perform-plan, plan-operates-on-p (with-upgradability () - (defgeneric* (traverse) (operation component &key &allow-other-keys) + (defgeneric make-plan (plan-class operation component &key &allow-other-keys) (:documentation - "Generate and return a plan for performing OPERATION on COMPONENT. - -The plan returned is a list of dotted-pairs. Each pair is the CONS -of ASDF operation object and a COMPONENT object. The pairs will be -processed in order by OPERATE.")) - (define-convenience-action-methods traverse (operation component &key)) + "Generate and return a plan for performing OPERATION on COMPONENT.")) + (define-convenience-action-methods make-plan (plan-class operation component &key)) (defgeneric perform-plan (plan &key)) (defgeneric plan-operates-on-p (plan component)) (defvar *default-plan-class* 'sequential-plan) - (defmethod traverse ((o operation) (c component) &rest keys &key plan-class &allow-other-keys) + (defmethod make-plan (plan-class (o operation) (c component) &rest keys &key &allow-other-keys) (let ((plan (apply 'make-instance (or plan-class *default-plan-class*) - :system (component-system c) (remove-plist-key :plan-class keys)))) + :system (component-system c) keys))) (traverse-action plan o c t) - (plan-actions plan))) + plan)) - (defmethod perform-plan :around (plan &key) - (declare (ignorable plan)) + (defmethod perform-plan :around ((plan t) &key) (let ((*package* *package*) (*readtable* *readtable*)) (with-compilation-unit () ;; backward-compatibility. (call-next-method)))) ;; Going forward, see deferred-warning support in lisp-build. + (defmethod perform-plan ((plan t) &rest keys &key &allow-other-keys) + (apply 'perform-plan (plan-actions plan) keys)) + (defmethod perform-plan ((steps list) &key force &allow-other-keys) (loop* :for (o . c) :in steps :when (or force (not (nth-value 1 (compute-action-stamp nil o c)))) :do (perform-with-restarts o c))) + (defmethod plan-operates-on-p ((plan plan-traversal) (component-path list)) + (plan-operates-on-p (plan-actions plan) component-path)) + (defmethod plan-operates-on-p ((plan list) (component-path list)) (find component-path (mapcar 'cdr plan) :test 'equal :key 'component-find-path))) @@ -422,9 +425,9 @@ processed in order by OPERATE.")) (let ((plan (apply 'make-instance (or plan-class 'filtered-sequential-plan) keys))) (loop* :for (o . c) :in actions :do (traverse-action plan o c t)) - (plan-actions plan))) + plan)) - (define-convenience-action-methods traverse-sub-actions (o c &key)) + (define-convenience-action-methods traverse-sub-actions (operation component &key)) (defmethod traverse-sub-actions ((operation operation) (component component) &rest keys &key &allow-other-keys) (apply 'traverse-actions (direct-dependencies operation component) :system (component-system component) keys)) @@ -438,7 +441,8 @@ processed in order by OPERATE.")) (defmethod required-components (system &rest keys &key (goal-operation 'load-op) &allow-other-keys) (remove-duplicates - (mapcar 'cdr (apply 'traverse-sub-actions goal-operation system - (remove-plist-key :goal-operation keys))) + (mapcar 'cdr (plan-actions + (apply 'traverse-sub-actions goal-operation system + (remove-plist-key :goal-operation keys)))) :from-end t))) diff --git a/test/run-tests.sh b/test/run-tests.sh index f2cfecc9ecb7dcd60aba9a162c1d2f395a04b51a..a251d158a04cdd70233448a055c402e9fc5d8630 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -266,13 +266,13 @@ upgrade_tags () { # 2.26 (2012-10-30) was used by Quicklisp # 2.27 (2013-02-01) is the first ASDF 3 pre-release # 2.32 (2013-03-05) is the first really stable ASDF 3 pre-release - # + # 3.0.1 (2013-05-16) is the first stable ASDF 3 release echo REQUIRE 1.85 1.97 1.369 # git tag -l '2.0??' # git tag -l '2.??' echo 2.000 2.008 2.011 2.014.6 2.019 2.20 2.22 2.26 - echo 2.27 - git tag -l '2.3[2-9]' + echo 2.27 2.32 + git tag -l '3.0.[1-9]' } upgrade_methods () { if [ -n "$ASDF_UPGRADE_TEST_METHODS" ] ; then diff --git a/test/script-support.lisp b/test/script-support.lisp index ea471638df2c120bc79a8f27ad082c48392342b7..84df1f85134e79683b81f4b375565100c561940e 100644 --- a/test/script-support.lisp +++ b/test/script-support.lisp @@ -559,7 +559,7 @@ is bound, write a message and exit on an error. If `(apply (asym :register-system-definition) ',name :pathname ,*test-directory* :source-file nil ',rest)) -(defun in-plan-p (plan x) (member x plan :key (asym :action-path) :test 'equal)) +(defun in-plan-p (plan x) (member x (acall :plan-actions plan) :key (asym :action-path) :test 'equal)) (defmacro test-load-systems (&rest x) `(do-test-load-systems ',x)) diff --git a/test/test-asdf.script b/test/test-asdf.script index f5cd6e1a3ebfbaa52eb5430dbdb4a9847d7c4af4..5c64500c3b82fc39a85406bce7edd18edd680ff6 100644 --- a/test/test-asdf.script +++ b/test/test-asdf.script @@ -1,6 +1,6 @@ (load-system "test-asdf/test-module-depend") -(defparameter *plan* (traverse 'load-op "test-asdf/test-module-depend")) +(defparameter *plan* (make-plan () 'load-op "test-asdf/test-module-depend")) (DBG :foo *plan* (component-depends-on 'compile-op '("test-asdf/test-module-depend" "quux" "file3mod" "file3")) (asdf::component-if-feature (find-component "test-asdf/test-module-depend" '("quux" "file3mod" "file3")))) diff --git a/test/test-module-excessive-depend.script b/test/test-module-excessive-depend.script index 1a71858f0b4f3a960e9b9dc8db1ab4687ef9d53f..5976ef749d3e174d826a7ef44da4c2a0ab986891 100644 --- a/test/test-module-excessive-depend.script +++ b/test/test-module-excessive-depend.script @@ -1,7 +1,5 @@ ;;; -*- Lisp -*- - - ;;;--------------------------------------------------------------------------- ;;; Here's what we are trying to test. Let us say we have a system X that ;;; contains a file, "file1" and a module, "quux" that depends on file 1. In @@ -76,7 +74,7 @@ #|(format t "~%Operation plan is:~%")(pprint plan)(terpri)|# (when (loop :for (o . c) :in plan :thereis (and (eq c file3c) (typep o 'asdf:compile-op))) (error "Excessive operations on file3-only system. Bad propagation of dependencies.")) -(asdf:operate 'asdf:load-op 'test-module-excessive-depend) +(operate 'load-op 'test-module-excessive-depend) (assert (>= (file-write-date file1) before)) (assert (>= (file-write-date file2) before)) (unless (= (file-write-date file3) diff --git a/test/test-nested-components-1.asd b/test/test-nested-components-1.asd index 79a8df3e32003b79a8de6f0578c42e4741fd1f05..d0930b0d39a8b77af97392103614a3b713604dab 100644 --- a/test/test-nested-components-1.asd +++ b/test/test-nested-components-1.asd @@ -1,12 +1,5 @@ ;;; -*- Mode: common-lisp; Syntax: Common-Lisp; -*- -(in-package :common-lisp-user) - -(defpackage #:test-nested-components.system - (:use #:common-lisp #:asdf)) - -(in-package :test-nested-components.system) - (defsystem test-nested-components-a :components ((:module "nested-components" @@ -27,9 +20,3 @@ :pathname "preflight-checks" :components ((:file "preflight"))) - -#| -newer traverse always fails -older traverse fails when db-agraph-preflight is evaluated, ok - when loaded or compiled -|# diff --git a/test/test-nested-components.script b/test/test-nested-components.script index 933fd9e787e9208bf0d35daf6d8dea51fb743f1b..fc793c9050170ce1b45c0ed6e72459e1faecaa56 100644 --- a/test/test-nested-components.script +++ b/test/test-nested-components.script @@ -2,66 +2,24 @@ ;;; check that added nesting via modules doesn't confuse ASDF - - - -(progn - (setf asdf:*central-registry* nil) - (load "test-nested-components-1.asd") - (print - (list - :a - (asdf::traverse (make-instance 'asdf:compile-op) - (asdf:find-system 'test-nested-components-a)) - (asdf::traverse (make-instance 'asdf:compile-op) - (asdf:find-system 'test-nested-components-b)) - :x - (asdf::traverse (make-instance 'asdf:compile-op) - (asdf:find-system 'db-agraph-preflight)) - (asdf::traverse (make-instance 'asdf:compile-op) - (asdf:find-system 'db-agraph-preflight-2)) - )) - -#| - - (asdf:oos 'asdf:compile-op 'test-nested-components-a) - (asdf:oos 'asdf:compile-op 'test-nested-components-b) - - (print - (list - (asdf::traverse (make-instance 'asdf:load-op) - (asdf:find-system 'test-nested-components-a)) - (asdf::traverse (make-instance 'asdf:load-op) - (asdf:find-system 'test-nested-components-b)))) - -|# - -) - - - - +(setf *central-registry* nil) +(load "test-nested-components-1.asd") + +(print + (list + :a + (traverse 'compile-op 'test-nested-components-a) + (traverse 'compile-op 'test-nested-components-b) + :x + (traverse 'compile-op 'db-agraph-preflight) + (traverse 'compile-op 'db-agraph-preflight-2))) #| -(((#<ASDF:COMPILE-OP NIL {11DEB619}> - . #<ASDF:CL-SOURCE-FILE "preflight" {11B7B951}>) - (#<ASDF:COMPILE-OP NIL {11DEB619}> - . #<ASDF:MODULE "preflight-checks" {11B799A9}>) - (#<ASDF:COMPILE-OP NIL {11DEB619}> - . #<ASDF:SYSTEM "test-nested-components-a" {11AEDD59}>) - (#<ASDF:LOAD-OP NIL {11D04FE9}> - . #<ASDF:CL-SOURCE-FILE "preflight" {11B7B951}>) - (#<ASDF:LOAD-OP NIL {11D04FE9}> - . #<ASDF:MODULE "preflight-checks" {11B799A9}>) - (#<ASDF:LOAD-OP NIL {11D04FE9}> - . #<ASDF:SYSTEM "test-nested-components-a" {11AEDD59}>)) +(oos 'compile-op 'test-nested-components-a) +(oos 'compile-op 'test-nested-components-b) - ((#<ASDF:COMPILE-OP NIL {11E4D9B1}> - . #<ASDF:CL-SOURCE-FILE "preflight" {11C94B89}>) - (#<ASDF:COMPILE-OP NIL {11E4D9B1}> - . #<ASDF:SYSTEM "test-nested-components-b" {11C92819}>) - (#<ASDF:LOAD-OP NIL {11E4A911}> - . #<ASDF:CL-SOURCE-FILE "preflight" {11C94B89}>) - (#<ASDF:LOAD-OP NIL {11E4A911}> - . #<ASDF:SYSTEM "test-nested-components-b" {11C92819}>))) +(print + (list + (traverse 'load-op 'test-nested-components-a) + (traverse 'load-op 'test-nested-components-b))) |# diff --git a/uiop/lisp-build.lisp b/uiop/lisp-build.lisp index 641843df4b4524ff280b179fb417dfde1e6797e7..dbc13e613a6c8b0c8ecc9ed2550909db72af5a0a 100644 --- a/uiop/lisp-build.lisp +++ b/uiop/lisp-build.lisp @@ -570,7 +570,7 @@ possibly in a different process. Otherwise just run the BODY." (defun* (compile-file*) (input-file &rest keys &key compile-check output-file warnings-file - #+clisp lib-file #+(or ecl mkcl) object-file + #+clisp lib-file #+(or ecl mkcl) object-file #+sbcl emit-cfasl &allow-other-keys) "This function provides a portable wrapper around COMPILE-FILE. It ensures that the OUTPUT-FILE value is only returned and @@ -611,12 +611,23 @@ it will filter them appropriately." (or object-file (compile-file-pathname output-file :fasl-p nil))) (tmp-file (tmpize-pathname output-file)) + #+sbcl + (cfasl-file (etypecase emit-cfasl + (null nil) + ((eql t) (make-pathname :type "cfasl" :defaults output-file)) + (string (parse-namestring emit-cfasl)) + (pathname emit-cfasl))) + #+sbcl + (tmp-cfasl (when cfasl-file (make-pathname :type "cfasl" :defaults tmp-file))) #+clisp (tmp-lib (make-pathname :type "lib" :defaults tmp-file))) (multiple-value-bind (output-truename warnings-p failure-p) (with-saved-deferred-warnings (warnings-file) (with-muffled-compiler-conditions () - (or #-(or ecl mkcl) (apply 'compile-file input-file :output-file tmp-file keywords) + (or #-(or ecl mkcl) + (apply 'compile-file input-file :output-file tmp-file + #+sbcl (if emit-cfasl (list* :emit-cfasl tmp-cfasl keywords) keywords) + #-sbcl keywords) #+ecl (apply 'compile-file input-file :output-file (if object-file (list* object-file :system-p t keywords) @@ -641,11 +652,14 @@ it will filter them appropriately." (delete-file-if-exists output-file) (when output-truename #+clisp (when lib-file (rename-file-overwriting-target tmp-lib lib-file)) + #+sbcl (when cfasl-file (rename-file-overwriting-target tmp-cfasl cfasl-file)) (rename-file-overwriting-target output-truename output-file) (setf output-truename (truename output-file))) #+clisp (delete-file-if-exists tmp-lib)) (t ;; error or failed check (delete-file-if-exists output-truename) + #+clisp (delete-file-if-exists tmp-lib) + #+sbcl (delete-file-if-exists tmp-cfasl) (setf output-truename nil))) (values output-truename warnings-p failure-p)))) diff --git a/uiop/stream.lisp b/uiop/stream.lisp index 8e4727abbc60a197f94bcb11e5eddba101bba397..8cb16ca211d072905d8ed481e4b422ba885e65a2 100644 --- a/uiop/stream.lisp +++ b/uiop/stream.lisp @@ -94,7 +94,7 @@ hopefully, if done consistently, that won't affect program behavior too much.") and implementation-defined external-format's") (defun encoding-external-format (encoding) - (funcall *encoding-external-format-hook* encoding))) + (funcall *encoding-external-format-hook* (or encoding *default-encoding*)))) ;;; Safe syntax diff --git a/upgrade.lisp b/upgrade.lisp index cba4b396d649a83407dcade7b11d128f2d2b8704..5c53f9607c95e4a51e69e0023964daa2cba63407 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO ;; "3.4.5.67" would be a development version in the official upstream of 3.4.5. ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5 ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67 - (asdf-version "3.0.1.3") + (asdf-version "3.0.1.7") (existing-version (asdf-version))) (setf *asdf-version* asdf-version) (when (and existing-version (not (equal asdf-version existing-version))) @@ -70,7 +70,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO #:find-component ;; find-component #:explain #:perform #:perform-with-restarts #:input-files #:output-files ;; action #:component-depends-on #:operation-done-p #:component-depends-on - #:traverse ;; plan + #:traverse ;; backward-interface #:operate ;; operate #:parse-component-form ;; defsystem #:apply-output-translations ;; output-translations diff --git a/version.lisp-expr b/version.lisp-expr index 57757f6ccbab61e192d16292abb75c02230cc1c1..bc72624a5116b1bd68281d9631c13742f5cdff8d 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"3.0.1.3" +"3.0.1.7"